$this->section_contact, 'panel' => 'rt_contact_social_panel', 'title' => __( 'Contact Information', 'bigshop' ), 'description' => __( 'WTBigshop Contact Address Section', 'bigshop' ), 'priority' => 1 ] ); Customize::add_controls( $this->section_contact, $this->get_controls() ); } /** * Get controls * @return array */ public function get_controls() { return apply_filters( 'wtbigshop_contact_controls', [ 'rt_phone' => [ 'type' => 'text', 'label' => __( 'Phone', 'bigshop' ), ], 'rt_email' => [ 'type' => 'text', 'label' => __( 'Email', 'bigshop' ), ], 'rt_website' => [ 'type' => 'text', 'label' => __( 'Website', 'bigshop' ), ], 'rt_phone_label' => [ 'type' => 'textarea', 'label' => __( 'Phone Label Text', 'bigshop' ), ], 'rt_contact_address' => [ 'type' => 'textarea', 'label' => __( 'Address', 'bigshop' ), 'description' => __( 'Enter company address here.', 'bigshop' ), ], ] ); } }