WordPress 3.6 を使用。
スタイルシートを用意する
スタイルシートを用意する。
今回は、使用中のテーマのフォルダの直下に「custom_admin_style.css」というファイル名を配置する。
functions.php にコードを追加
functions.php (Themify を使用しているなら custom-functions.php)に以下を追加。
1 2 3 4 5 6 |
add_action('admin_head', 'add_custom_admin_style', 100); function add_custom_admin_style() { //$css_url = get_settings('siteurl') . '/wp-content/themes/テーマ名/custom_admin_style.css'; $css_url = get_template_directory_uri() . '/custom_admin_style.css'; echo '<link rel="stylesheet" type="text/css" href="' . $css_url . '">'; } |