$this->section_header_color, 'panel' => 'rt_color_panel', 'title' => __( 'Header Colors', 'bigshop' ), 'description' => __( 'WTBigshop Header Color Section', 'bigshop' ), 'priority' => 4 ] ); Customize::add_controls( $this->section_header_color, $this->get_controls() ); } /** * Get controls * @return array */ public function get_controls() { return apply_filters( 'wtbigshop_header_color_controls', [ 'rt_menu_heading1' => [ 'type' => 'heading', 'label' => __( 'Default Menu', 'bigshop' ), ], 'rt_menu_color' => [ 'type' => 'alfa_color', 'label' => __( 'Menu Color', 'bigshop' ), ], 'rt_menu_active_color' => [ 'type' => 'alfa_color', 'label' => __( 'Menu Hover & Active Color', 'bigshop' ), ], 'rt_submenu_bg_color' => [ 'type' => 'alfa_color', 'label' => __( 'SubMenu Background Color', 'bigshop' ), ], 'rt_menu_heading4' => [ 'type' => 'heading', 'label' => __( 'Others Style', 'bigshop' ), ], 'rt_menu_border_color' => [ 'type' => 'alfa_color', 'label' => __( 'Menu Border Color', 'bigshop' ), ], 'rt_menu_label_color' => [ 'type' => 'alfa_color', 'label' => __( 'Label Color', 'bigshop' ), ], 'rt_menu_icon_color' => [ 'type' => 'alfa_color', 'label' => __( 'Icon Color', 'bigshop' ), ], ] ); } }