Skip to content

Instantly share code, notes, and snippets.

@niao70
Last active August 29, 2015 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niao70/8702574 to your computer and use it in GitHub Desktop.
Save niao70/8702574 to your computer and use it in GitHub Desktop.
<?
//functions.php
//編集画面用スタイルシート
add_editor_style('./css/my_editors_styles.css');
//initArrayを編集
function my_editor_settings( $initArray ) {
$initArray['body_class'] = 'editor_mystyle';//編集画面に独自のクラスをつける
$initArray['theme_advanced_buttons3'] = 'hr';
//<hr>を挿入するボタンを表示、などということもできます。
return $initArray;
}
//tiny_mce_before_initに加える
add_filter( 'tiny_mce_before_init', 'my_editor_settings' );
?>
@niao70
Copy link
Author

niao70 commented Jan 30, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment