我试图为WordPress定制器的widgets部分添加一个控件,但我很难找到该部分的id:
$wp_customize->add_control( \'sidebar_position\', array(
\'label\' => __( \'Sidebar Position\' ),
\'type\' => \'select\',
\'choices\' => array(
// Options...
),
\'section\' => \'???\', // <- Needed here.
) );