WP_Widget_Recent_Posts::__construct
Sets up a new Recent Posts widget instance.
Method of the class: WP_Widget_Recent_Posts{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Widget_Recent_Posts = new WP_Widget_Recent_Posts(); $WP_Widget_Recent_Posts->__construct();
Changelog
| Since 2.8.0 | Introduced. |
WP_Widget_Recent_Posts::__construct() WP Widget Recent Posts:: construct code WP 7.0.1
public function __construct() {
$widget_ops = array(
'classname' => 'widget_recent_entries',
'description' => __( 'Your site’s most recent Posts.' ),
'customize_selective_refresh' => true,
'show_instance_in_rest' => true,
);
parent::__construct( 'recent-posts', __( 'Recent Posts' ), $widget_ops );
$this->alt_option_name = 'widget_recent_entries';
}