Changeset 25721
- Timestamp:
- 10/07/2013 07:33:16 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-settings.php
r25139 r25721 172 172 } 173 173 174 /** 175 * Fires once all must-use and network-activated plugins have loaded. 176 * 177 * @since 2.8.0 178 */ 174 179 do_action( 'muplugins_loaded' ); 175 180 … … 210 215 wp_cache_postload(); 211 216 217 /** 218 * Fires once activated plugins have loaded. 219 * 220 * Pluggable functions are also available at this point in the loading order. 221 * 222 * @since 1.5.2 223 */ 212 224 do_action( 'plugins_loaded' ); 213 225 … … 218 230 wp_magic_quotes(); 219 231 232 /** 233 * Fires when comment cookies are sanitized. 234 * 235 * @since 2.0.11 236 */ 220 237 do_action( 'sanitize_comment_cookies' ); 221 238 … … 263 280 $GLOBALS['wp_roles'] = new WP_Roles(); 264 281 282 /** 283 * Fires before the theme is loaded. 284 * 285 * @since 2.6.0 286 */ 265 287 do_action( 'setup_theme' ); 266 288 … … 295 317 } 296 318 319 /** 320 * Fires after the theme is loaded. 321 * 322 * @since 3.0.0 323 */ 297 324 do_action( 'after_setup_theme' ); 298 325 … … 301 328 302 329 /** 330 * Fires after WordPress has finished loading but before any headers are sent. 331 * 303 332 * Most of WP is loaded at this stage, and the user is authenticated. WP continues 304 333 * to load on the init hook that follows (e.g. widgets), and many plugins instantiate … … 306 335 * 307 336 * If you wish to plug an action once WP is loaded, use the wp_loaded hook below. 337 * 338 * @since 1.5.2 308 339 */ 309 340 do_action( 'init' ); … … 328 359 * @since 3.0.0 329 360 */ 330 do_action( 'wp_loaded');361 do_action( 'wp_loaded' );
Note: See TracChangeset
for help on using the changeset viewer.