How to get post number

Support General How to get post numberResolved

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #27697
    ThibautThibaut
    Participant

    Hello,

    I got 3 custom post types

    Books
    Photographers
    Publishers

    How to get the number of post included in each type? what the php function that will excecute?

    Thank you

    #27698
    ThibautThibaut
    Participant

    found it

    <?php // Get total number of posts in "Books" post type
    $count_books = wp_count_posts('books');
    $total_books = $count_books->publish;
    echo $total_books . ' books. ';
    ?>

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.