関数 remove_editor_styles()
2014/12/17
関数 remove_editor_styles()
定義ファイル : /blog/wp-includes/theme.php 3
1 2 3 4 5 6 7 8 | function remove_editor_styles() { if ( ! current_theme_supports( 'editor-style' ) ) return false; _remove_theme_support( 'editor-style' ); if ( is_admin() ) $GLOBALS['editor_styles'] = array(); return true; } |