Changeset 37040 for trunk/src/wp-includes/widgets/class-wp-widget-rss.php
- Timestamp:
- 03/21/2016 09:58:02 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-rss.php
r35978 r37040 24 24 */ 25 25 public function __construct() { 26 $widget_ops = array( 'description' => __('Entries from any RSS or Atom feed.') ); 26 $widget_ops = array( 27 'description' => __( 'Entries from any RSS or Atom feed.' ), 28 'customize_selective_refresh' => true, 29 ); 27 30 $control_ops = array( 'width' => 400, 'height' => 200 ); 28 parent::__construct( 'rss', __( 'RSS'), $widget_ops, $control_ops );31 parent::__construct( 'rss', __( 'RSS' ), $widget_ops, $control_ops ); 29 32 } 30 33
Note: See TracChangeset
for help on using the changeset viewer.