Make WordPress Core


Ignore:
Timestamp:
05/23/2016 05:06:40 PM (8 years ago)
Author:
DrewAPicture
Message:

Docs: Apply inline @see tags to hooks referenced in DocBlocks for root directory files.

Applying these specially-crafted @see tags allows the Code Reference parser to recognize and link these elements as hooks.

See #36921.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-signup.php

    r37535 r37536  
    389389     * Filters the new site meta variables.
    390390     *
     391     * Use the {@see 'add_signup_meta'} filter instead.
     392     *
    391393     * @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.
    393395     *
    394396     * @param array $blog_meta_defaults An array of default blog meta variables.
     
    431433 * @param string $user_name  The username.
    432434 * @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().
    434436 * @param int    $blog_id    The site ID.
    435437 */
     
    723725 * @param string $user_name The user's username
    724726 * @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()
    726728 */
    727729function confirm_blog_signup( $domain, $path, $blog_title, $user_name = '', $user_email = '', $meta = array() ) {
Note: See TracChangeset for help on using the changeset viewer.