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

See #32246.

Built from https://develop.svn.wordpress.org/trunk@36030


git-svn-id: http://core.svn.wordpress.org/trunk@35995 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-12-19 19:41:30 +00:00
parent e844695e12
commit 5399b2137f
2 changed files with 5 additions and 2 deletions

View File

@ -2412,11 +2412,14 @@ function get_profile( $field, $user = false ) {
} }
/** /**
* Number of posts user has written. * Retrieves the number of posts a user has written.
* *
* @since 0.71 * @since 0.71
* @deprecated 3.0.0 Use count_user_posts() * @deprecated 3.0.0 Use count_user_posts()
* @see count_user_posts() * @see count_user_posts()
*
* @param int $userid User to count posts for.
* @return int Number of posts the given user has written.
*/ */
function get_usernumposts( $userid ) { function get_usernumposts( $userid ) {
_deprecated_function( __FUNCTION__, '3.0', 'count_user_posts()' ); _deprecated_function( __FUNCTION__, '3.0', 'count_user_posts()' );

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.5-alpha-36029'; $wp_version = '4.5-alpha-36030';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.