From c593ceb5e837b532ff876db08498729639a22f25 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sat, 19 Dec 2015 19:40:28 +0000 Subject: [PATCH] Docs: Add missing parameter and return notations to the DocBlock for the deprecated `get_usernumposts()` function. See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@36030 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/deprecated.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/deprecated.php b/src/wp-includes/deprecated.php index 1c5bdfe2f8..8b6ee1690e 100644 --- a/src/wp-includes/deprecated.php +++ b/src/wp-includes/deprecated.php @@ -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 * @deprecated 3.0.0 Use 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 ) { _deprecated_function( __FUNCTION__, '3.0', 'count_user_posts()' );