Make WordPress Core

Ticket #26991: user-mine.patch

File user-mine.patch, 250 bytes (added by danielpataki, 11 years ago)

A quick patch to add custom post type support to count_user_posts()

Line 
1209c209
2< function count_user_posts($userid) {
3---
4> function count_user_posts( $userid, $post_type = 'post' ) {
5212c212
6<       $where = get_posts_by_author_sql('post', true, $userid);
7---
8>       $where = get_posts_by_author_sql( $post_type, true, $userid);