WP_Widget_Recent_Posts::__construct()publicWP 2.8.0

Sets up a new Recent Posts widget instance.

Method of the class: WP_Widget_Recent_Posts{}

No Hooks.

Return

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() code WP 6.5.2

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';
}