Make WordPress Core

Changeset 18656


Ignore:
Timestamp:
09/08/2011 08:59:41 PM (13 years ago)
Author:
azaozz
Message:

Rename the newly added action 'after_theme_change' to 'after_switch_theme' so it matches the 'switch_theme' action, props scribu, see #17979

Location:
trunk/wp-includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/default-filters.php

    r18655 r18656  
    220220add_action( 'wp_print_footer_scripts', '_wp_footer_scripts'                 );
    221221add_action( 'init',                'check_theme_switched',            99    );
    222 add_action( 'after_theme_change',  '_wp_sidebars_changed'                   );
     222add_action( 'after_switch_theme',  '_wp_sidebars_changed'                   );
    223223
    224224if ( isset( $_GET['replytocom'] ) )
  • trunk/wp-includes/theme.php

    r18655 r18656  
    19951995
    19961996/**
    1997  * Checks if a theme has been changed and runs 'after_theme_change' hook on the next WP load
     1997 * Checks if a theme has been changed and runs 'after_switch_theme' hook on the next WP load
    19981998 *
    19991999 * @since 3.3
    2000  */   
     2000 */
    20012001function check_theme_switched() {
    20022002    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 );
    20042004        update_option( 'theme_switched', false );
    20052005    }
Note: See TracChangeset for help on using the changeset viewer.