mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
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:
parent
e844695e12
commit
5399b2137f
@ -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()' );
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user