Changeset 30714 for trunk/src/wp-includes/class-wp-customize-section.php
- Timestamp:
- 12/02/2014 10:15:33 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-section.php
r30656 r30714 113 113 114 114 /** 115 * @since 4.1.0 116 * @access public 117 * @var string 118 */ 119 public $type; 115 * Type of this section. 116 * 117 * @since 4.1.0 118 * @access public 119 * @var string 120 */ 121 public $type = 'default'; 120 122 121 123 /** … … 293 295 */ 294 296 protected function render() { 295 $classes = ' control-section accordion-section';297 $classes = 'accordion-section control-section control-section-' . $this->type; 296 298 ?> 297 299 <li id="accordion-section-<?php echo esc_attr( $this->id ); ?>" class="<?php echo esc_attr( $classes ); ?>"> … … 325 327 326 328 /** 329 * Type of this section. 330 * 327 331 * @since 4.1.0 328 332 * @access public
Note: See TracChangeset
for help on using the changeset viewer.