Changeset 20649 for trunk/wp-includes/class-wp-customize.php
- Timestamp:
- 04/30/2012 05:20:32 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-customize.php
r20645 r20649 112 112 add_filter( 'pre_option_template_root', array( $this, 'get_template_root' ) ); 113 113 114 do_action( 'start_previewing_theme' );114 do_action( 'start_previewing_theme', $this ); 115 115 } 116 116 … … 140 140 remove_filter( 'pre_option_template_root', array( $this, 'get_template_root' ) ); 141 141 142 do_action( 'stop_previewing_theme' );142 do_action( 'stop_previewing_theme', $this ); 143 143 } 144 144 … … 149 149 */ 150 150 public function wp_loaded() { 151 do_action( 'customize_register' );151 do_action( 'customize_register', $this ); 152 152 153 153 if ( $this->is_preview() && ! is_admin() ) … … 188 188 } 189 189 190 do_action( 'customize_preview_init' );190 do_action( 'customize_preview_init', $this ); 191 191 } 192 192 … … 335 335 } 336 336 337 do_action( 'customize_save' );337 do_action( 'customize_save', $this ); 338 338 339 339 foreach ( $this->settings as $setting ) {
Note: See TracChangeset
for help on using the changeset viewer.