Changeset 18656
- Timestamp:
- 09/08/2011 08:59:41 PM (13 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/default-filters.php
r18655 r18656 220 220 add_action( 'wp_print_footer_scripts', '_wp_footer_scripts' ); 221 221 add_action( 'init', 'check_theme_switched', 99 ); 222 add_action( 'after_ theme_change', '_wp_sidebars_changed' );222 add_action( 'after_switch_theme', '_wp_sidebars_changed' ); 223 223 224 224 if ( isset( $_GET['replytocom'] ) ) -
trunk/wp-includes/theme.php
r18655 r18656 1995 1995 1996 1996 /** 1997 * Checks if a theme has been changed and runs 'after_ theme_change' hook on the next WP load1997 * Checks if a theme has been changed and runs 'after_switch_theme' hook on the next WP load 1998 1998 * 1999 1999 * @since 3.3 2000 */ 2000 */ 2001 2001 function check_theme_switched() { 2002 2002 if ( false !== ( $old_theme = get_option( 'theme_switched' ) ) && !empty( $old_theme ) ) { 2003 do_action( 'after_ theme_change', $old_theme );2003 do_action( 'after_switch_theme', $old_theme ); 2004 2004 update_option( 'theme_switched', false ); 2005 2005 }
Note: See TracChangeset
for help on using the changeset viewer.