$this->section_banner_color, 'panel' => 'rt_color_panel', 'title' => __( 'Banner / Breadcrumb Colors', 'bigshop' ), 'description' => __( 'WTBigshop Banner Color Section', 'bigshop' ), 'priority' => 6 ] ); Customize::add_controls( $this->section_banner_color, $this->get_controls() ); } /** * Get controls * @return array */ public function get_controls() { return apply_filters( 'wtbigshop_site_color_controls', [ 'rt_banner_bg' => [ 'type' => 'color', 'label' => __( 'Banner Background', 'bigshop' ), ], 'rt_breadcrumb_color' => [ 'type' => 'color', 'label' => __( 'Link Color', 'bigshop' ), ], 'rt_breadcrumb_active' => [ 'type' => 'color', 'label' => __( 'Link Active Color', 'bigshop' ), ], 'rt_breadcrumb_title_color' => [ 'type' => 'color', 'label' => __( 'Title Color', 'bigshop' ), ], ] ); } }