你好,
我想知道\'type\' => \'text\'
中的选项$wp_customize->add_control
控制
$wp_customize->add_control( \'textfield_1_control\', array(
\'label\' => __(\'Textfield 1\', \'cvh\'),
\'section\' => \'test_section\',
\'settings\' => \'textfield_setting_1\',
\'type\' => \'text\',
\'description\' => \'type => text\',
));
以及
new WP_Customize_Control
控制
$wp_customize->add_control( new WP_Customize_Control( $wp_customize, \'textfield_2_control\', array(
\'label\' => __(\'Textfield 2\', \'cvh\'),
\'section\' => \'test_section\',
\'settings\' => \'textfield_setting_2\',
\'description\' => \'WP_Customize_Control\',
)));
输出完全相同(textfield)。