我已将此功能注册到主题定制中。但它没有显示到前端(自定义部分)。
// Header section customize field
function header($wp_customize){
$wp_customize->add_section('header_section', array(
'title' => 'Header Section'
));
$wp_customize->add_setting('header_headline', array(
'default' => 'Hello, I\'m'
));
$wp_customize->add_control(new WP_Customize_control($wp_customize, 'header_headline_control', array(
'label' => 'Headline',
'section' => 'header_section',
'setting' => 'header_headline'
)));
}
add_action('customize_register','header');
开满天机