diff --git a/wp-activate.php b/wp-activate.php index bfd562076c..c4be17f544 100644 --- a/wp-activate.php +++ b/wp-activate.php @@ -32,13 +32,17 @@ $wp_query->is_404 = false; do_action( 'activate_header' ); /** - * Adds an action hook specific to this page that fires on wp_head + * Adds an action hook specific to this page. + * + * Fires on {@see 'wp_head'}. * * @since MU */ function do_activate_header() { - /** - * Fires before the Site Activation page is loaded, but on the wp_head action. + /** + * Fires before the Site Activation page is loaded. + * + * Fires on the {@see 'wp_head'} action. * * @since 3.0.0 */ diff --git a/wp-includes/version.php b/wp-includes/version.php index ab31fb95fc..2146bb26c0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37535'; +$wp_version = '4.6-alpha-37536'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-settings.php b/wp-settings.php index e9433be25f..c96d1efbaa 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -385,10 +385,10 @@ $GLOBALS['wp']->init(); * Fires after WordPress has finished loading but before any headers are sent. * * 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 + * to load on the {@see '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. + * If you wish to plug an action once WP is loaded, use the {@see 'wp_loaded'} hook below. * * @since 1.5.0 */ diff --git a/wp-signup.php b/wp-signup.php index f15a5fb9c2..bff24987dc 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -388,8 +388,10 @@ function validate_another_blog_signup() { /** * Filters the new site meta variables. * + * Use the {@see 'add_signup_meta'} filter instead. + * * @since MU - * @deprecated 3.0.0 Use the 'add_signup_meta' filter instead. + * @deprecated 3.0.0 Use the {@see 'add_signup_meta'} filter instead. * * @param array $blog_meta_defaults An array of default blog meta variables. */ @@ -430,7 +432,7 @@ function validate_another_blog_signup() { * @param string $blog_title The site title. * @param string $user_name The username. * @param string $user_email The user's email address. - * @param array $meta Any additional meta from the 'add_signup_meta' filter in validate_blog_signup(). + * @param array $meta Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup(). * @param int $blog_id The site ID. */ function confirm_another_blog_signup( $domain, $path, $blog_title, $user_name, $user_email = '', $meta = array(), $blog_id = 0 ) { @@ -722,7 +724,7 @@ function validate_blog_signup() { * @param string $blog_title The new site title * @param string $user_name The user's username * @param string $user_email The user's email address - * @param array $meta Any additional meta from the 'add_signup_meta' filter in validate_blog_signup() + * @param array $meta Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup() */ function confirm_blog_signup( $domain, $path, $blog_title, $user_name = '', $user_email = '', $meta = array() ) { ?>