Changeset 37536
- Timestamp:
- 05/23/2016 05:06:40 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-activate.php
r36416 r37536 33 33 34 34 /** 35 * Adds an action hook specific to this page that fires on wp_head 35 * Adds an action hook specific to this page. 36 * 37 * Fires on {@see 'wp_head'}. 36 38 * 37 39 * @since MU 38 40 */ 39 41 function do_activate_header() { 40 /** 41 * Fires before the Site Activation page is loaded, but on the wp_head action. 42 /** 43 * Fires before the Site Activation page is loaded. 44 * 45 * Fires on the {@see 'wp_head'} action. 42 46 * 43 47 * @since 3.0.0 -
trunk/src/wp-settings.php
r37477 r37536 386 386 * 387 387 * Most of WP is loaded at this stage, and the user is authenticated. WP continues 388 * to load on the inithook that follows (e.g. widgets), and many plugins instantiate388 * to load on the {@see 'init'} hook that follows (e.g. widgets), and many plugins instantiate 389 389 * themselves on it for all sorts of reasons (e.g. they need a user, a taxonomy, etc.). 390 390 * 391 * If you wish to plug an action once WP is loaded, use the wp_loadedhook below.391 * If you wish to plug an action once WP is loaded, use the {@see 'wp_loaded'} hook below. 392 392 * 393 393 * @since 1.5.0 -
trunk/src/wp-signup.php
r37535 r37536 389 389 * Filters the new site meta variables. 390 390 * 391 * Use the {@see 'add_signup_meta'} filter instead. 392 * 391 393 * @since MU 392 * @deprecated 3.0.0 Use the 'add_signup_meta'filter instead.394 * @deprecated 3.0.0 Use the {@see 'add_signup_meta'} filter instead. 393 395 * 394 396 * @param array $blog_meta_defaults An array of default blog meta variables. … … 431 433 * @param string $user_name The username. 432 434 * @param string $user_email The user's email address. 433 * @param array $meta Any additional meta from the 'add_signup_meta'filter in validate_blog_signup().435 * @param array $meta Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup(). 434 436 * @param int $blog_id The site ID. 435 437 */ … … 723 725 * @param string $user_name The user's username 724 726 * @param string $user_email The user's email address 725 * @param array $meta Any additional meta from the 'add_signup_meta'filter in validate_blog_signup()727 * @param array $meta Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup() 726 728 */ 727 729 function confirm_blog_signup( $domain, $path, $blog_title, $user_name = '', $user_email = '', $meta = array() ) {
Note: See TracChangeset
for help on using the changeset viewer.