wp/wp-includes/widgets/class-wp-widget-recent-posts.php
changeset 18 be944660c56a
parent 16 a86126ab1dd4
child 19 3d72ae0968f4
equal deleted inserted replaced
17:34716fd837a4 18:be944660c56a
    24 	public function __construct() {
    24 	public function __construct() {
    25 		$widget_ops = array(
    25 		$widget_ops = array(
    26 			'classname'                   => 'widget_recent_entries',
    26 			'classname'                   => 'widget_recent_entries',
    27 			'description'                 => __( 'Your site’s most recent Posts.' ),
    27 			'description'                 => __( 'Your site’s most recent Posts.' ),
    28 			'customize_selective_refresh' => true,
    28 			'customize_selective_refresh' => true,
       
    29 			'show_instance_in_rest'       => true,
    29 		);
    30 		);
    30 		parent::__construct( 'recent-posts', __( 'Recent Posts' ), $widget_ops );
    31 		parent::__construct( 'recent-posts', __( 'Recent Posts' ), $widget_ops );
    31 		$this->alt_option_name = 'widget_recent_entries';
    32 		$this->alt_option_name = 'widget_recent_entries';
    32 	}
    33 	}
    33 
    34