WP_Widget_Recent_Posts::__construct() WordPress Method

The WP_Widget_Recent_Posts::__construct() method is used to create a new recent posts widget. This widget will display the most recent posts from your blog in the sidebar.

WP_Widget_Recent_Posts::__construct() #

Sets up a new Recent Posts widget instance.


Source

File: wp-includes/widgets/class-wp-widget-recent-posts.php

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


Top ↑

Changelog

Changelog
VersionDescription
2.8.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.