WP_Widget_Recent_Posts::__construct()publicWP 2.8.0

Sets up a new Recent Posts widget instance.

Метод класса: WP_Widget_Recent_Posts{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Widget_Recent_Posts = new WP_Widget_Recent_Posts();
$WP_Widget_Recent_Posts->__construct();

Список изменений

С версии 2.8.0 Введена.

Код WP_Widget_Recent_Posts::__construct() WP 6.7.1

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