Nếu tôi thêm nhiều hơn 5 Cài đặt vào một phần, thứ tự của các cài đặt sẽ trở nên kỳ lạ.
Ví dụ:
// 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'
) ) );
Ví dụ khác trong một pastebin - không có thời gian hết hạn
Các màu được đánh số từ 1 đến 7, nhưng trong cài đặt chúng xuất hiện theo thứ tự đó: 2,1,3,4,6,5,7
Có ai có kinh nghiệm tương tự?
Hoặc có ai thậm chí biết làm thế nào để giải quyết điều này?