WP_Widget_Calendar::__construct
Sets up a new Calendar widget instance.
Method of the class: WP_Widget_Calendar{}
No Hooks.
Returns
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() WP Widget Calendar:: construct code WP 7.0
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 );
}