这是 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');
答案 0 :(得分:0)
虽然没有完全解决问题,但我从https://gist.github.com/Abban/2968549抓取了Sample并将其复制到我的functions.php文件中。完美的工作。现在我必须进行调整,并在页面上显示项目。
答案 1 :(得分:0)
这可能是插件冲突问题。请停用插件并尝试。
感谢。