Forums

Display post count (3 posts)

  1. geggiot
    Member
    Posted 1 year ago #

    Hi all,
    how can i display post's count for a specific cat written by an author?

  2. geggiot
    Member
    Posted 1 year ago #

    bump!

  3. MAS
    Member
    Posted 1 year ago #

    $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

Topic Closed

This topic has been closed to new replies.

About this Topic