rtsb_name = esc_html__( 'Archive Title', 'shopbuilder' ); $this->rtsb_base = 'rtsb-archive-title'; parent::__construct( $data, $args ); } /** * Keywords * * @return array */ public function get_keywords() { return [ 'title', 'archive', 'archive title', 'page title' ] + parent::get_keywords(); } /** * Widget Field * * @return array */ public function widget_fields() { return ArchiveTitleSettings::widget_fields( $this ); } /** * Render Function * * @return void */ protected function render() { $controllers = $this->get_settings_for_display(); $this->theme_support(); $data = [ 'template' => 'elementor/archive/title', 'controllers' => $controllers, ]; Fns::load_template( $data['template'], $data ); $this->theme_support( 'render_reset' ); } }