WP_Widget_Recent_Posts::__construct()

In this article

Sets up a new Recent Posts widget instance.

Source

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

Changelog

VersionDescription
2.8.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.