यदि मैं किसी एकल खंड में 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'
) ) );
एक pastebin में आगे के उदाहरण - कोई समय समाप्ति समय नहीं
रंग 1 से 7 तक गिने जाते हैं, लेकिन वे उस क्रम में दिखाई देते हैं: 2,1,3,4,6,5,7
क्या किसी ने भी ऐसा ही अनुभव किया है?
या किसी को भी पता है कि यह कैसे हल करने के लिए?