使用自定义程序更改WordPress标题颜色

时间:2017-09-21 18:48:52

标签: wordpress

我的customizer.php文件中有主题自定义功能:

function mytheme_customize_register( $wp_customize ) {
    $wp_customize->get_setting( 'blogname' )->transport         = 'postMessage';
    $wp_customize->get_setting( 'blogdescription' )->transport  = 'postMessage';
    $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
}

但我无法使用主题定制器更改header_textcolor。如何在主题中使用标题文本颜色值?

我的标题css:

.navbar-default .navbar-nav>.active>a {
    color: #777;
    background-color: transparent;
}

1 个答案:

答案 0 :(得分:1)

您可以使用private使用header_textcolor值,并在适用的情况下使用该值。对于您的特定解决方案,请将以下代码放在functions.php中的某处:

get_theme_mod( 'header_textcolor' )