WP_Widget_Calendar::__construct()publicWP 2.8.0

Sets up a new Calendar widget instance.

Method of the class: WP_Widget_Calendar{}

No Hooks.

Return

null. Nothing (null).

Usage

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

Changelog

Since 2.8.0 Introduced.

WP_Widget_Calendar::__construct() code WP 6.5.2

public function __construct() {
	$widget_ops = array(
		'classname'                   => 'widget_calendar',
		'description'                 => __( 'A calendar of your site’s posts.' ),
		'customize_selective_refresh' => true,
		'show_instance_in_rest'       => true,
	);
	parent::__construct( 'calendar', __( 'Calendar' ), $widget_ops );
}