- Timestamp:
- 10/10/2017 07:08:51 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-themes-section.php
r41709 r41807 38 38 39 39 /** 40 * Theme section filter type. 41 * 42 * Determines whether filters are applied to loaded (local) themes or by initiating a new remote query (remote). 43 * When filtering is local, the initial themes query is not paginated by default. 44 * 45 * @since 4.9.0 46 * @var string 47 */ 48 public $filter_type = 'local'; 49 50 /** 40 51 * Get section parameters for JS. 41 52 * … … 46 57 $exported = parent::json(); 47 58 $exported['action'] = $this->action; 59 $exported['filter_type'] = $this->filter_type; 48 60 49 61 return $exported;
Note: See TracChangeset
for help on using the changeset viewer.