equal
deleted
inserted
replaced
31 public function __construct() { |
31 public function __construct() { |
32 $widget_ops = array( |
32 $widget_ops = array( |
33 'classname' => 'widget_calendar', |
33 'classname' => 'widget_calendar', |
34 'description' => __( 'A calendar of your site’s posts.' ), |
34 'description' => __( 'A calendar of your site’s posts.' ), |
35 'customize_selective_refresh' => true, |
35 'customize_selective_refresh' => true, |
|
36 'show_instance_in_rest' => true, |
36 ); |
37 ); |
37 parent::__construct( 'calendar', __( 'Calendar' ), $widget_ops ); |
38 parent::__construct( 'calendar', __( 'Calendar' ), $widget_ops ); |
38 } |
39 } |
39 |
40 |
40 /** |
41 /** |