如果我在一个部分中添加了5个以上的设置,则设置的顺序会变得很奇怪。
例如:
// Link color
$wp_customize->add_setting( 'tonal_'.$themeslug.'_settings[link_color1]', array(
'default' => $themeOptions['link_color1'],
'type' => 'option',
'sanitize_callback' => 'sanitize_hex_color',
'capability' => 'edit_theme_options',
'transport' => 'postMessage'
) );
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'tonal_'.$themeslug.'_settings[link_color1]', array(
'label' => __( 'Link color1', 'tonal' ),
'section' => 'colors',
'settings' => 'tonal_'.$themeslug.'_settings[link_color1]',
'choices' => '#ffffff'
) ) );
颜色从1到7进行编号,但在设置中按以下顺序显示:2、1、3、4、6、5、7
有人经历过吗?
还是有人甚至不知道该如何解决?
当然,它拼写为“ cusomizer”吗?;)
—
kaiser 2012年
thx ... fixed = D
—
xsonic 2012年