$this->section_footer_color, 'panel' => 'rt_color_panel', 'title' => __( 'Footer Colors', 'bigshop' ), 'description' => __( 'WTBigshop Footer Color Section', 'bigshop' ), 'priority' => 8 ] ); Customize::add_controls( $this->section_footer_color, $this->get_controls() ); } /** * Get controls * @return array */ public function get_controls() { return apply_filters( 'wtbigshop_footer_color_controls', [ 'rt_footer_color1' => [ 'type' => 'heading', 'label' => __( 'Main Footer', 'bigshop' ), ], 'rt_footer_bg' => [ 'type' => 'color', 'label' => __( 'Footer Background', 'bigshop' ), ], 'rt_footer_text_color' => [ 'type' => 'color', 'label' => __( 'Footer Text', 'bigshop' ), ], 'rt_footer_link_color' => [ 'type' => 'color', 'label' => __( 'Footer Link', 'bigshop' ), ], 'rt_footer_link_hover_color' => [ 'type' => 'color', 'label' => __( 'Footer Link - Hover', 'bigshop' ), ], 'rt_footer_widget_title_color' => [ 'type' => 'color', 'label' => __( 'Widget Title', 'bigshop' ), ], 'rt_footer_copyright_color1' => [ 'type' => 'heading', 'label' => __( 'Copyright Area', 'bigshop' ), ], 'rt_copyright_bg' => [ 'type' => 'color', 'label' => __( 'Copyright Background', 'bigshop' ), ], 'rt_copyright_text_color' => [ 'type' => 'color', 'label' => __( 'Copyright Text', 'bigshop' ), ], 'rt_copyright_link_color' => [ 'type' => 'color', 'label' => __( 'Copyright Link', 'bigshop' ), ], 'rt_copyright_link_hover_color' => [ 'type' => 'color', 'label' => __( 'Copyright Link - Hover', 'bigshop' ), ], 'rt_footer_input_border_color' => [ 'type' => 'color', 'label' => __( 'Border Color', 'bigshop' ), ], 'rt_copyright_social_bg_color' => [ 'type' => 'color', 'label' => __( 'Icon Background', 'bigshop' ), ], ] ); } }