From a0b8caa29b882713c89a6d7d376f861ec87800f8 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Thu, 13 Nov 2014 02:19:22 +0000 Subject: [PATCH] Introduce `$post_type` param for `count_user_posts()`. Props Caspie, engelen, DrewAPicture. Fixes #21364. Built from https://develop.svn.wordpress.org/trunk@30322 git-svn-id: http://core.svn.wordpress.org/trunk@30321 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/user.php | 18 +++++++++++------- wp-includes/version.php | 2 +- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/wp-includes/user.php b/wp-includes/user.php index 64836ac7eb..6bd92adefc 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -250,16 +250,18 @@ function wp_validate_logged_in_cookie( $user_id ) { * Number of posts user has written. * * @since 3.0.0 + * @since 4.0.0 Added $post_type parameter. * * @global wpdb $wpdb WordPress database object for queries. * - * @param int $userid User ID. - * @return int Amount of posts user has written. + * @param int $userid User ID. + * @param string $post_type Optional. Post type to count the number of posts for. Default 'post'. + * @return int Number of posts the user has written in this post type. */ -function count_user_posts($userid) { +function count_user_posts( $userid, $post_type = 'post' ) { global $wpdb; - $where = get_posts_by_author_sql('post', true, $userid); + $where = get_posts_by_author_sql( $post_type, true, $userid ); $count = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->posts $where" ); @@ -267,11 +269,13 @@ function count_user_posts($userid) { * Filter the number of posts a user has written. * * @since 2.7.0 + * @since 4.0.0 Added $post_type parameter. * - * @param int $count The user's post count. - * @param int $userid User ID. + * @param int $count The user's post count. + * @param int $userid User ID. + * @param string $post_type Post type to count the number of posts for. */ - return apply_filters( 'get_usernumposts', $count, $userid ); + return apply_filters( 'get_usernumposts', $count, $userid, $post_type ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 11557aa45c..8cd22e51b7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30321'; +$wp_version = '4.1-alpha-30322'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.