- Timestamp:
- 03/21/2016 09:58:02 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-calendar.php
r34619 r37040 34 34 */ 35 35 public function __construct() { 36 $widget_ops = array('classname' => 'widget_calendar', 'description' => __( 'A calendar of your site’s Posts.') ); 37 parent::__construct('calendar', __('Calendar'), $widget_ops); 36 $widget_ops = array( 37 'classname' => 'widget_calendar', 38 'description' => __( 'A calendar of your site’s Posts.' ), 39 'customize_selective_refresh' => true, 40 ); 41 parent::__construct( 'calendar', __( 'Calendar' ), $widget_ops ); 38 42 } 39 43
Note: See TracChangeset
for help on using the changeset viewer.