Wordpress:自定义程序未显示,没有错误

时间:2016-12-22 20:05:37

标签: javascript php wordpress wordpress-theming

这是 functions.php 的一部分,它不起作用(我没有PHP错误,也没有显示任何内容):

function calmar_studio_customizer_register ($wp_customize) {
        $wp_customize -> add_section('calmar_studio_colors', array (
                'title'         => __('Colors', 'calmar_studio'),
                'description'   => 'Modify the theme colors',
        ));
        $wp_customize -> add_setting('background_color', array (
                'default'       => '#fff',
        ));
        $wp_customize -> add_control( new WP_Customize_Color_Control($wp_customize, 'background_color', array(
                'label'         => __('Edit Background Color', 'calmar_studio'),
                'section'       => 'calmar_studio_colors',
                'settings'      => 'background_color',
        ) ));
}
add_action('cutomize_register', 'calmar_studio_customize_register');

2 个答案:

答案 0 :(得分:0)

虽然没有完全解决问题,但我从https://gist.github.com/Abban/2968549抓取了Sample并将其复制到我的functions.php文件中。完美的工作。现在我必须进行调整,并在页面上显示项目。

答案 1 :(得分:0)

这可能是插件冲突问题。请停用插件并尝试。

感谢。