diff --git a/wp-includes/deprecated.php b/wp-includes/deprecated.php index 1c5bdfe2f8..8b6ee1690e 100644 --- a/wp-includes/deprecated.php +++ b/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()' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index edf4e4584a..c04bd798c6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @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.