自定义程序节的名称是什么?我想在customizer事件日历部分下添加一个字段选项。或者如何在事件日历选项下添加字段?有人能帮我吗?
`$wp_customize->add_section( \'the_event_secction_name\' , array(
\'title\' => __( \'My Section Name\', \'starter\' ),
\'priority\' => 30
) );
$wp_customize->add_setting( \'starter_new_setting_name\' , array(
\'default\' => \'#000000\',
\'transport\' => \'refresh\',
) );
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, \'link_color\', array(
\'label\' => __( \'Header Color\', \'starter\' ),
\'section\' => \'the_event_secction_name\',
\'settings\' => \'starter_new_setting_name\',
) ) );`