最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

wp query - WP_Query to display number of custom post type filtered (order by) taxonomy

programmeradmin0浏览0评论

I am trying to display the number of posts made in custom post type "incidents" by the custom taxonomy "store".

eg.

Store 1: 8 posts

Store 2: 6 posts

etc.

I have been looking through here and only been able to find how to display the actual posts, which I do not need. Thanks for any help!

I am trying to display the number of posts made in custom post type "incidents" by the custom taxonomy "store".

eg.

Store 1: 8 posts

Store 2: 6 posts

etc.

I have been looking through here and only been able to find how to display the actual posts, which I do not need. Thanks for any help!

Share Improve this question asked Sep 3, 2019 at 17:57 AquitelloAquitello 11 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

You could try running a custom query for each:

$args_1 = array(
    'post_type' => 'incidents',
    'post_status' => 'published',
    'posts_per_page' => -1,
    'tax_query'      => array(
        array(
            'taxonomy' => 'store',
            'field'    => 'name',
            'terms'    => 'store_1',
        ),
    ),
);
$count_1 = count( get_posts( $args_1 ) );

echo 'Store 1: ' . $count_1 . ' posts';
发布评论

评论列表(0)

  1. 暂无评论