list of custom taxonomies and number of related post
-
Hi,
i’m trying to get a list of the terms from a custom taxonomy with the numer of post associated with.
I’ve tried
wp_tag_cloud( array( 'taxonomy' => 'tema', 'number' => 0, 'format' => 'list' ) );
and it generate the list, with also the links, but it seems that there’s no way to add the post count.
After some search i’ve found a metod to generate a tag list with post count
$tags = get_tags(array( 'orderby' => 'name', 'order' => 'ASC', 'number' => 0, ) ); foreach ($tags as $tag) { echo '<a href="' . get_tag_link($tag->term_id) . '" rel="tag">' . $tag->name . '</a> (' . $tag->count . ')<br />'; }
but i can’t find a way to adapt the code and get the list of the terms of my custom taxonomy.
Can you help me?
Thanks
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘list of custom taxonomies and number of related post’ is closed to new replies.