add_section( 'bozu_category_color_section', array( 'title' => esc_html__( 'Category Color', 'bozu' ), 'capability' => 'edit_theme_options', 'panel' => 'theme_colors_panel', ) ); // Recommended Posts Enable Disable. $wp_customize->add_setting( 'bozu_category_colors', array( 'sanitize_callback' => 'bozu_sanitize_repeater', 'default' => $bozu_defaults['bozu_category_colors'], )); $wp_customize->add_control( new Bozu_Repeater_Controler( $wp_customize, 'bozu_category_colors', array( 'section' => 'bozu_category_color_section', 'settings' => 'bozu_category_colors', 'bozu_box_label' => esc_html__('New Category','bozu'), 'bozu_box_add_control' => esc_html__('Add New Category Color','bozu'), 'bozu_box_add_button' => true, ), array( 'category' => array( 'type' => 'select', 'label' => esc_html__( 'Select Category', 'bozu' ), 'options' => $bozu_post_category_list, 'class' => 'bozu-custom-cat-color' ), 'category_color' => array( 'type' => 'colorpicker', 'label' => esc_html__( 'Category Color', 'bozu' ), 'class' => '' ), ) ));