Get_heme_mod();不返回任何内容

时间:2013-08-22 作者:Shivam

我在WordPress中的自定义字段有问题。该字段在WP的customize部分显示得很好,但它只是不回显。

<p> <?php echo get_theme_mod(\'copyright_details\'); ?> </p>
功能。php代码:

function limus_customize_register( $wp_customize )
{
   //copyright
    $wp_customize->add_section(\'limus_copyright\', array(
        \'title\' => __(\'Copyright Details\', \'limus\'),
        \'description\' => \'Add/Edit copyright information\'
    ));
    $wp_customize->add_setting(\'copyright_details\', array(
        \'default\' => \'&copy; 2000-2013 Limus Design Inc. All Rights Reserved.\'
    ));
    $wp_customize->add_control(\'copyright_details\', array(
        \'label\' => __(\'Copyright Information\', \'limus\'),
        \'section\' => \'limus_copyright\',
        \'setting\' => \'copyright_details\'
    ));
}
add_action( \'customize_register\', \'limus_customize_register\' );

1 个回复
SO网友:Ghost Echo

如果get_theme_mod() 正在自定义部分加载,但不是在站点上加载,可能是因为您尚未保存和发布该字段。尝试更改字段并单击“保存(&;“发布”。

结束

相关推荐

Admin sidebar customization

我的新客户wordpress站点在管理侧栏中没有插件、外观或任何其他默认项。谁能告诉我这些是怎么出现的吗。该站点正在主站点的子目录中运行。它有自己的wordpress安装。主题是前面的rttheme16。提前谢谢。