Changeset 29451 for trunk/src/wp-includes/class-wp-customize-manager.php
- Timestamp:
- 08/08/2014 11:30:30 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r29170 r29451 17 17 final class WP_Customize_Manager { 18 18 /** 19 * An instance of the theme that is being customized.19 * An instance of the theme being previewed. 20 20 * 21 21 * @var WP_Theme … … 31 31 32 32 /** 33 * Whether filters have been set to change the active theme to the theme being 34 * customized. 33 * Whether this is a Customizer pageload. 35 34 * 36 35 * @var boolean … … 184 183 } 185 184 186 // All good, let's do some internal business to preview the theme.187 185 $this->start_previewing_theme(); 188 186 } … … 201 199 202 200 /** 203 * Start previewing the selected theme by adding filters to change the current theme. 201 * If the theme to be previewed isn't the active theme, add filter callbacks 202 * to swap it out at runtime. 204 203 * 205 204 * @since 3.4.0
Note: See TracChangeset
for help on using the changeset viewer.