WordPress のいろいろなカスタマイズ集のメモです
ビジュアルエディタ内で表示させるフォントを変更する
[WORDPRESSインストールディレクトリ]/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/content.css
の中の
/* WordPress styles */
<body>の部分を編集する。
body { font-family:Georgia, "Times New Roman", "Bitstream Charter", Times, serif; font-size: 13px; line-height: 19px; color: #333; margin: 10px; min-height: 100%; }
body { font-family:"メイリオ", Meiryo, "ヒラギノ丸ゴ Pro W4", "Hiragino Maru Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", sans-serif; font-size: 13px; line-height: 19px; color: #333; margin: 10px; min-height: 100%; }
参考:http://ameblo.jp/enpc/entry-11281594397.html
function.php 関連カスタマイズ
参考:http://htdsn.com/blog/archives/wordpress-admin-customize.html
バージョン更新を非表示にする
add_filter('pre_site_transient_update_core', '__return_zero');
バージョンチェックの通信をさせない
remove_action('wp_version_check', 'wp_version_check'); remove_action('admin_init', '_maybe_update_core');
管理バーのヘルプメニューを非表示に
function my_admin_head(){ echo '<style type="text/css">#contextual-help-link-wrap{display:none;}</style>'; }
3.5.x から、投稿画面が「HTML」から「テキスト」に変更になったので、強引に戻す
WordPress 3.5.x より、投稿画面のテキストが「HTML」から「テキスト」に変わりました。しかし、お客さんにとって、表示が変わるとは驚きです。なので、HTMLに戻すときは・・・。
add_action('admin_head', 'my_admin_head'); add_filter('gettext', 'change_post_to_article'); add_filter('gettext_with_context', 'change_post_to_article'); add_filter('ngettext', 'change_post_to_article'); add_filter('ngettext_with_context', 'change_post_to_article'); function change_post_to_article($translated) { $translated = str_ireplace( 'テキスト', 'HTML', $translated ); return $translated; }
参考:http://ja.forums.wordpress.org/topic/10592(フォーラムの重鎮の皆さん、とくに宮内さんありがとうございます!)
他参考サイト
http://www.nxworld.net/wordpress/wp-admin-customize-hack.html