Changeset 20295 for trunk/wp-includes/class-wp-customize-section.php
- Timestamp:
- 03/28/2012 04:14:09 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-customize-section.php
r20260 r20295 16 16 public $title = ''; 17 17 public $description = ''; 18 public $ settings;18 public $controls; 19 19 20 20 /** … … 36 36 $this->id = $id; 37 37 38 $this-> settings = array(); // Users cannot customize the $settings array.38 $this->controls = array(); // Users cannot customize the $controls array. 39 39 40 40 return $this; … … 85 85 <ul class="customize-section-content"> 86 86 <?php 87 foreach ( $this-> settings as $setting)88 $ setting->maybe_render();87 foreach ( $this->controls as $control ) 88 $control->maybe_render(); 89 89 ?> 90 90 </ul>
Note: See TracChangeset
for help on using the changeset viewer.