Bug on wp_list_authors
-
Version 2.2.0
wp_list_authors counts pages and postsTo correct it:
SELECT DISTINCT post_author, COUNT(ID) AS count
FROM $wpdb->posts
WHERE (post_status = ‘publish’ and post_type=’post’)
GROUP BY post_author”) as $row)
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Bug on wp_list_authors’ is closed to new replies.