Changeset 40395 for trunk/src/wp-includes/class-wp-customize-panel.php
- Timestamp:
- 04/07/2017 07:26:31 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-panel.php
r38470 r40395 105 105 106 106 /** 107 * Auto-expand a section in a panel when the panel is expanded when the panel only has the one section. 108 * 109 * @since 4.7.4 110 * @access public 111 * @var bool 112 */ 113 public $auto_expand_sole_section = false; 114 115 /** 107 116 * Customizer sections for this panel. 108 117 * … … 220 229 $array['active'] = $this->active(); 221 230 $array['instanceNumber'] = $this->instance_number; 231 $array['autoExpandSoleSection'] = $this->auto_expand_sole_section; 222 232 return $array; 223 233 }
Note: See TracChangeset
for help on using the changeset viewer.