add a wp_loaded action that fires once WordPress init has finished. Props Denis-de-Bernardy. See #12400

git-svn-id: https://develop.svn.wordpress.org/trunk@13481 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dion Hulse 2010-02-28 03:08:16 +00:00
parent 4b4c0c6cd2
commit fa082ecca5
1 changed files with 16 additions and 1 deletions

View File

@ -277,7 +277,22 @@ register_shutdown_function( 'shutdown_action_hook' );
// Set up current user.
$wp->init();
// Everything is loaded and initialized.
/**
* Most of WP is loaded at this stage, and the user is authenticated. WP continues
* to load on the init hook that follows (e.g. widgets), and many plugins instantiate
* themselves on it for all sorts of reasons (e.g. they need a user, a taxonomy, etc.).
*
* If you wish to plug an action once WP is loaded, use the wp_loaded hook below.
*/
do_action( 'init' );
/**
* The purpose of this hook is to fire actions once WP, all plugins, and the theme,
* are fully loaded and instantiated.
*
* AJAX requests should use wp-ajax.php and wp-admin/admin-ajax.php instead.
*
* @since 3.0
*/
do_action('wp_loaded');
?>