$this->section_id, 'title' => __( 'Body Typography', 'bigshop' ), 'description' => __( 'WTBigshop Body Typography Section', 'bigshop' ), 'panel' => 'rt_typography_panel', 'priority' => 1 ] ); Customize::add_controls( $this->section_id, $this->get_controls() ); } /** * Get controls * @return array */ public function get_controls() { return apply_filters( 'wtbigshop_body_typo_section', [ 'rt_body_typo' => [ 'type' => 'typography', 'label' => __( 'Body Typography', 'bigshop' ), 'default' => json_encode( [ 'font' => 'Inter', 'regularweight' => '400', 'size' => '16', 'lineheight' => '28', ] ) ], ] ); } }