Hi all,
how can i display post's count for a specific cat written by an author?
Hi all,
how can i display post's count for a specific cat written by an author?
bump!
$args=array('show_count' => 1);
wp_list_categories($args);
or
<?php
$count_posts = wp_count_posts();
$published_posts = $count_posts->publish;
echo $published_posts;
?>
For more information: http://codex.wordpress.org/Function_Reference/wp_count_posts
This topic has been closed to new replies.