最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How can I create my own widgets in WordPress?

programmeradmin1浏览0评论
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 question
function 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 question
function 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
Add a comment  | 

1 Answer 1

Reset to default 1

These 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/
发布评论

评论列表(0)

  1. 暂无评论