Changeset 13481 for trunk/wp-settings.php
- Timestamp:
- 02/28/2010 03:08:16 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-settings.php
r13366 r13481 278 278 $wp->init(); 279 279 280 // Everything is loaded and initialized. 280 /** 281 * Most of WP is loaded at this stage, and the user is authenticated. WP continues 282 * to load on the init hook that follows (e.g. widgets), and many plugins instantiate 283 * themselves on it for all sorts of reasons (e.g. they need a user, a taxonomy, etc.). 284 * 285 * If you wish to plug an action once WP is loaded, use the wp_loaded hook below. 286 */ 281 287 do_action( 'init' ); 282 288 289 /** 290 * The purpose of this hook is to fire actions once WP, all plugins, and the theme, 291 * are fully loaded and instantiated. 292 * 293 * AJAX requests should use wp-ajax.php and wp-admin/admin-ajax.php instead. 294 * 295 * @since 3.0 296 */ 297 do_action('wp_loaded'); 283 298 ?>
Note: See TracChangeset
for help on using the changeset viewer.