Changeset 37040 for trunk/src/wp-includes/class-wp-widget.php
- Timestamp:
- 03/21/2016 09:58:02 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-widget.php
r36541 r37040 156 156 $this->name = $name; 157 157 $this->option_name = 'widget_' . $this->id_base; 158 $this->widget_options = wp_parse_args( $widget_options, array( 'classname' => $this->option_name) );159 $this->control_options = wp_parse_args( $control_options, array( 'id_base' => $this->id_base) );158 $this->widget_options = wp_parse_args( $widget_options, array( 'classname' => $this->option_name, 'customize_selective_refresh' => false ) ); 159 $this->control_options = wp_parse_args( $control_options, array( 'id_base' => $this->id_base ) ); 160 160 } 161 161
Note: See TracChangeset
for help on using the changeset viewer.