X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/9441756a895fb4fdc4bcf20e0d228cef622663ca..refs/tags/wordpress-4.5:/wp-includes/widgets/class-wp-widget-rss.php diff --git a/wp-includes/widgets/class-wp-widget-rss.php b/wp-includes/widgets/class-wp-widget-rss.php index b477a6e4..a2548c4e 100644 --- a/wp-includes/widgets/class-wp-widget-rss.php +++ b/wp-includes/widgets/class-wp-widget-rss.php @@ -23,9 +23,12 @@ class WP_Widget_RSS extends WP_Widget { * @access public */ public function __construct() { - $widget_ops = array( 'description' => __('Entries from any RSS or Atom feed.') ); + $widget_ops = array( + 'description' => __( 'Entries from any RSS or Atom feed.' ), + 'customize_selective_refresh' => true, + ); $control_ops = array( 'width' => 400, 'height' => 200 ); - parent::__construct( 'rss', __('RSS'), $widget_ops, $control_ops ); + parent::__construct( 'rss', __( 'RSS' ), $widget_ops, $control_ops ); } /**