Rename the new 'themes_loaded' hook to 'after_setup_theme' to prevent confusion as to what it actually does & where its fired from. Fixes #12231

git-svn-id: https://develop.svn.wordpress.org/trunk@13214 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dion Hulse 2010-02-19 10:00:00 +00:00
parent 5028f2ccbb
commit 9760997180
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ function twentyten_init() {
require_once( $locale_file ); require_once( $locale_file );
} }
endif; endif;
add_action( 'themes_loaded', 'twentyten_init' ); add_action( 'after_setup_theme', 'twentyten_init' );
if ( ! function_exists( 'twentyten_admin_header_style' ) ) : if ( ! function_exists( 'twentyten_admin_header_style' ) ) :
function twentyten_admin_header_style() { function twentyten_admin_header_style() {

View File

@ -265,7 +265,7 @@ if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists( STYLESHEETPATH . '/function
if ( file_exists( TEMPLATEPATH . '/functions.php' ) ) if ( file_exists( TEMPLATEPATH . '/functions.php' ) )
include( TEMPLATEPATH . '/functions.php' ); include( TEMPLATEPATH . '/functions.php' );
do_action( 'themes_loaded' ); do_action( 'after_setup_theme' );
// Load any template functions the theme supports. // Load any template functions the theme supports.
require_if_theme_supports( 'post-thumbnails', ABSPATH . WPINC . '/post-thumbnail-template.php' ); require_if_theme_supports( 'post-thumbnails', ABSPATH . WPINC . '/post-thumbnail-template.php' );