WordPress主题定制工具栏CSS

时间:2013-01-25 09:43:05

标签: wordpress admin

如何更新默认的WordPress主题自定义工具栏CSS,以便我可以更改默认黑色的文本颜色。

添加管理CSS的默认钩子似乎不适用add_action('admin_head', 'custom_admin_css');

因此,例如#theme-description id,可以更改为另一种颜色,但如何?!

*我实际上想要将一些CSS添加到自定义选项中,而不是粘贴大量令人困惑的代码我试图保持简单的问题,所以如果我可以为此更改CSS,那么我可以创建我需要的CSS

非常感谢

1 个答案:

答案 0 :(得分:1)

您可以尝试使用 customize_controls_print_styles 钩子:

function theme_customizer_css() { ?>
    <style>
       // Custom Styles in here
    </style>
<?php }
add_action( 'customize_controls_print_styles', 'theme_customizer_css' );