描述
注册WP_Widget小工具
另见
- WP_Widget
参数
- $widget
-
(string|WP_Widget) (必填)
WP_Widget
子类的名称或实例。
源码
更新日志
版本 | 描述 |
---|---|
4.6.0 | 更新了$widget 参数,使其也接受WP_Widget实例对象,而不仅仅是WP_Widget 子类名称 |
2.8.0 | 开始引入 |
使用示例
示例
<?php /** * Class WPDocs_New_Widget */ class WPDocs_New_Widget extends WP_Widget { /** * Constructs the new widget. * * @see WP_Widget::__construct() */ function __construct() { // Instantiate the parent object. parent::__construct( false, __( 'My New Widget Title', 'textdomain' ) ); } /** * The widget's HTML output. * * @see WP_Widget::widget() * * @param array $args Display arguments including before_title, after_title, * before_widget, and after_widget. * @param array $instance The settings for the particular instance of the widget. */ function widget( $args, $instance ) {} /** * The widget update handler. * * @see WP_Widget::update() * * @param array $new_instance The new instance of the widget. * @param array $old_instance The old instance of the widget. * @return array The updated instance of the widget. */ function update( $new_instance, $old_instance ) { return $new_instance; } /** * Output the admin widget options form HTML. * * @param array $instance The current widget settings. * @return string The HTML markup for the form. */ function form( $instance ) { return ''; } } add_action( 'widgets_init', 'wpdocs_register_widgets' ); /** * Register the new widget. * * @see 'widgets_init' */ function wpdocs_register_widgets() { register_widget( 'WPDocs_New_Widget' ); }