esc_html__( 'WOODMART Banner', 'woodmart' ), // Widget Backend Description 'description' => esc_html__( 'Promo banner with text', 'woodmart' ), 'slug' => 'woodmart-banner', ); // Configure the widget fields // fields array $args['fields'] = woodmart_get_banner_params(); // create widget $this->create_widget( $args ); } // Output function function widget( $args, $instance ) { extract($args); echo wp_kses_post( $before_widget ); echo woodmart_shortcode_promo_banner( $instance, $instance['content'] ); echo wp_kses_post( $after_widget ); } function form( $instance ) { $id = uniqid(); echo '
'; parent::form( $instance ); echo ""; echo '
'; } } // class }