Minggu, 17 Maret 2019

Show count of Custom Taxonomy only for a specific Custom Post Type

I want to display the count of a Custom Taxonomy based on a specific Custom Post Type. At the moment, I'm using get_terms to list all terms of the Taxonomy. The Taxonomy is used by more than one Post Type. So the counter shows all the usage of the Taxonomy for every Post Type.

Is there a way to limit the count on a single Post Type?

Here is my actual code:


get_terms(array(
'taxonomy' => 'tax',
'hide_empty' => true,
'orderby' => 'count',
'order' => 'DESC',
'number' => '10',
));

Inside the foreach, I'm using term->count to show the usage counter.



from Show count of Custom Taxonomy only for a specific Custom Post Type

Show count of Custom Taxonomy only for a specific Custom Post Type Rating: 4.5 Diposkan Oleh: Admin

0 komentar:

Posting Komentar

Popular Posts