• Resolved michaellawrence

    (@michaellawrence)


    Is there a way to use this plugin to count all posts from all custom post types? and not just one?

    i.e. I have “photos”, “videos”,”events”..

    I can output total number of photos, but not photos + videos + events..

Viewing 1 replies (of 1 total)
  • Thread Starter michaellawrence

    (@michaellawrence)

    Found out a way to do it with code, no plugin

    <?php
        $count_photos = wp_count_posts( 'photos' );
        $count_videos = wp_count_posts('video');
        $published_photos = $count_photos->publish;
        $published_videos = $count_videos->publish;
        $total = $published_photos + $published_videos;
        echo $total;
      ?> Posts
Viewing 1 replies (of 1 total)
  • The topic ‘count all posts from all custom post types?’ is closed to new replies.