Pass the $public_only value to 'get_usernumposts' filter.

[32523] introduced the `$public_only` parameter to `count_user_posts()`. That
changeset was supposed to pass `$public_only` to the 'get_usernumposts' filter
at the end of the function, but only the documentation was modified, not the
filter itself.

This changeset also fixes an incorrect variable name in the docblock for
the same filter.

Props swisspidy, tmatsuur.
Fixes #33481 for trunk.
Built from https://develop.svn.wordpress.org/trunk@33710


git-svn-id: http://core.svn.wordpress.org/trunk@33677 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Boone Gorges 2015-08-22 18:59:26 +00:00
parent 20cc53b929
commit 6ab7493b27
2 changed files with 4 additions and 4 deletions

View File

@ -277,14 +277,14 @@ function count_user_posts( $userid, $post_type = 'post', $public_only = false )
*
* @since 2.7.0
* @since 4.1.0 Added `$post_type` argument.
* @since 4.3.0 Added `$public_only` argument.
* @since 4.3.1 Added `$public_only` argument.
*
* @param int $count The user's post count.
* @param int $userid User ID.
* @param string|array $post_types Post types to count the number of posts for.
* @param string|array $post_type Post types to count the number of posts for.
* @param bool $public_only Whether to limit counted posts to public posts.
*/
return apply_filters( 'get_usernumposts', $count, $userid, $post_type );
return apply_filters( 'get_usernumposts', $count, $userid, $post_type, $public_only );
}
/**

View File

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