php – WordPress主题定制器内容未在页面上显示

所有

我正在使用我为网站开发的自定义wordpress主题.我在页脚的左侧有一个字段用于邮寄地址,我希望通过wordpress中的主题自定义程序对其进行编辑.我已将相关字段添加自定义程序,但该字段的内容显示页面上.

在functions.PHP中,以下代码将字段添加主题定制器:

//Adds footer address to theme customizer   

function sanitize_footer_address($input){
    return strip_tags(stripslashes($input));    
}

function portfolio_customize_register($wp_customize){

    $wp_customize->add_section(
        'Footer', 
        array(
            'title' => __('Left Footer Content', 'portfolio'),
            'priority' => 200
        )
    );

    $wp_customize->add_setting(
        'footer_address', 
        array(
            'default' => '100 Main Street | Anytown, USA',
            'sanitize_callback' => 'sanitize_footer_address'
        )
    );

    $wp_customize->add_control( new WP_Customize_Control(
    $wp_customize, 
    'footer_address',
    array(
        'label' => 'Address to appear on left side of footer', 
        'section' => 'Footer', 
        'settings' => 'footer_address_text', 
        'type' => 'text'
    )
    )
 ); 
}

add_action(customize_register, portfolio_customize_register);

在footer.PHP模板中,相关标记是:

<p class="col md-4 text-muted" id="footer_address"><?PHP echo get_theme_mod('footer_address_text'); ?></p>

该字段的内容不会显示页面上.

解决方法:

add_setting()正在注册错误的ID,而add_control()添加认字段时不需要新的WP_Customize_Control($wp_customize),仅在创建自定义WP_Customize_ *类时.

$wp_customize->add_setting(
    'footer_address_text', 
    array(
        'default' => '100 Main Street | Anytown, USA',
        'sanitize_callback' => 'sanitize_footer_address'
    )
);

$wp_customize->add_control(
    'footer_address',
    array(
        'label' => 'Address to appear on left side of footer', 
        'section' => 'Footer', 
        'settings' => 'footer_address_text', 
        'type' => 'text'
    )
 ); 

相关文章

我们有时候在定制WORDPRESS主题的时候,由于菜单样式的要求我...
很多朋友在做wordpree主题制作的时候会经常遇到一个问题,那...
wordpress后台的模块很多,但并不是每个都经常用到。介绍几段...
从WordPress4.2版本开始,如果我们在MYSQL5.1版本数据中导出...
很多网友会遇到这样一个问题,就是WordPress网站上传图片、附...
对于经常要在文章中出现代码的IT相关博客,安装一个代码高亮...