Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this questionfunction wp_load_widget() {
register_widget( 'wp_widget' );
}
add_action( 'widgets_init', 'wp_load_widget' );
class wp_widget extends WP_Widget {
function __construct() {
parent::__construct( 'wp_widget', __('WPBeginner Widget', 'wp_widget_domain'), array( 'description' => __( 'Sample widget based on WPBeginner Tutorial', 'wp_widget_domain' ), )
);
}
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this questionfunction wp_load_widget() {
register_widget( 'wp_widget' );
}
add_action( 'widgets_init', 'wp_load_widget' );
class wp_widget extends WP_Widget {
function __construct() {
parent::__construct( 'wp_widget', __('WPBeginner Widget', 'wp_widget_domain'), array( 'description' => __( 'Sample widget based on WPBeginner Tutorial', 'wp_widget_domain' ), )
);
}
Share
Improve this question
edited Apr 30, 2019 at 11:16
Vishal tanwar
asked Apr 30, 2019 at 11:05
Vishal tanwarVishal tanwar
15 bronze badges
1 Answer
Reset to default 1These below links will help you for creating own widgets in WordPress with step by step.
- https://kinsta/blog/create-wordpress-widget/
- https://premium.wpmudev/blog/create-custom-wordpress-widget/
- https://www.hostinger.in/tutorials/how-to-create-custom-widget-in-wordpress
- https://www.wpbeginner/wp-tutorials/how-to-create-a-custom-wordpress-widget/