- Timestamp:
- 03/21/2016 09:58:02 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-search.php
r34611 r37040 24 24 */ 25 25 public function __construct() { 26 $widget_ops = array('classname' => 'widget_search', 'description' => __( "A search form for your site.") ); 26 $widget_ops = array( 27 'classname' => 'widget_search', 28 'description' => __( 'A search form for your site.' ), 29 'customize_selective_refresh' => true, 30 ); 27 31 parent::__construct( 'search', _x( 'Search', 'Search widget' ), $widget_ops ); 28 32 }
Note: See TracChangeset
for help on using the changeset viewer.