Make WordPress Core

Changeset 36030


Ignore:
Timestamp:
12/19/2015 07:40:28 PM (8 years ago)
Author:
DrewAPicture
Message:

Docs: Add missing parameter and return notations to the DocBlock for the deprecated get_usernumposts() function.

See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/deprecated.php

    r36028 r36030  
    24132413
    24142414/**
    2415  * Number of posts user has written.
     2415 * Retrieves the number of posts a user has written.
    24162416 *
    24172417 * @since 0.71
    24182418 * @deprecated 3.0.0 Use count_user_posts()
    24192419 * @see count_user_posts()
     2420 *
     2421 * @param int $userid User to count posts for.
     2422 * @return int Number of posts the given user has written.
    24202423 */
    24212424function get_usernumposts( $userid ) {
Note: See TracChangeset for help on using the changeset viewer.