Changeset 21070 for trunk/wp-includes/class-wp-customize-manager.php
- Timestamp:
- 06/12/2012 07:27:41 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/class-wp-customize-manager.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-customize-manager.php
r21069 r21070 161 161 add_filter( 'stylesheet', array( $this, 'get_stylesheet' ) ); 162 162 add_filter( 'pre_option_current_theme', array( $this, 'current_theme' ) ); 163 163 164 164 // @link: http://core.trac.wordpress.org/ticket/20027 165 165 add_filter( 'pre_option_stylesheet', array( $this, 'get_stylesheet' ) ); 166 166 add_filter( 'pre_option_template', array( $this, 'get_template' ) ); 167 167 168 168 // Handle custom theme roots. 169 169 add_filter( 'pre_option_stylesheet_root', array( $this, 'get_stylesheet_root' ) ); … … 191 191 remove_filter( 'stylesheet', array( $this, 'get_stylesheet' ) ); 192 192 remove_filter( 'pre_option_current_theme', array( $this, 'current_theme' ) ); 193 193 194 194 // @link: http://core.trac.wordpress.org/ticket/20027 195 195 remove_filter( 'pre_option_stylesheet', array( $this, 'get_stylesheet' ) ); 196 196 remove_filter( 'pre_option_template', array( $this, 'get_template' ) ); 197 197 198 198 // Handle custom theme roots. 199 199 remove_filter( 'pre_option_stylesheet_root', array( $this, 'get_stylesheet_root' ) );
Note: See TracChangeset
for help on using the changeset viewer.