WP_Widget_Recent_Posts::__construct() – Sets up a new Recent Posts widget instance.
You appear to be a bot. Output may be restricted
Description
Sets up a new Recent Posts widget instance.
Usage
WP_Widget_Recent_Posts::__construct();
Parameters
Returns
void
Source
File name: wordpress/wp-includes/widgets/class-wp-widget-recent-posts.php
Lines:
1 to 10 of 10
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'; }