$this->section_topbar_color, 'panel' => 'rt_color_panel', 'title' => __( 'Topbar Colors', 'bigshop' ), 'description' => __( 'WTBigshop Topbar Color Section', 'bigshop' ), 'priority' => 3 ] ); Customize::add_controls( $this->section_topbar_color, $this->get_controls() ); } /** * Get controls * @return array */ public function get_controls() { return apply_filters( 'wtbigshop_header_color_controls', [ 'rt_topbar_color' => [ 'type' => 'alfa_color', 'label' => __( 'Topbar Color', 'bigshop' ), ], 'rt_topbar_active_color' => [ 'type' => 'alfa_color', 'label' => __( 'Hover Color', 'bigshop' ), ], 'rt_topbar_bg_color' => [ 'type' => 'alfa_color', 'label' => __( 'Topbar Background', 'bigshop' ), ], 'rt_topbar_seperator_color' => [ 'type' => 'alfa_color', 'label' => __( 'Topbar Seperator Color', 'bigshop' ), ], ] ); } }