$this->section_id, 'title' => __( 'Menu Typography', 'bigshop' ), 'description' => __( 'WTBigshop Menu Typography Section', 'bigshop' ), 'panel' => 'rt_typography_panel', 'priority' => 3 ] ); Customize::add_controls( $this->section_id, $this->get_controls() ); } /** * Get controls * @return array */ public function get_controls() { return apply_filters( 'wtbigshop_menu_typo_section', [ 'rt_menu_typo' => [ 'type' => 'typography', 'label' => __( 'Menu Typography', 'bigshop' ), 'default' => json_encode( [ 'font' => 'Sarabun', 'regularweight' => '600', 'size' => '16', 'lineheight' => '22', ] ) ], ] ); } }