Get post count for current custom taxonomy

admin2025-06-03  3

My site has a custom taxonomy called series. Underneath each post, I'm trying to display a specific div, but only if that post is in a series, and only if that series has more than one post. I feel like this should be possible with a simple if-statement, but I'm not sure how to evaluate the post count of the current post's first (because technically speaking one post could be in multiple series) series taxonomy.

Any help would be greatly appreciated!

My site has a custom taxonomy called series. Underneath each post, I'm trying to display a specific div, but only if that post is in a series, and only if that series has more than one post. I feel like this should be possible with a simple if-statement, but I'm not sure how to evaluate the post count of the current post's first (because technically speaking one post could be in multiple series) series taxonomy.

Any help would be greatly appreciated!

Share Improve this question asked Feb 7, 2019 at 9:16 SegiaSegia 691 silver badge8 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You can use wp_get_post_terms( get_the_ID(), 'series' ) to obtain all terms associated with the current post. This function returns array of WP_Term objects and WP_Term has count property which can be used as condition.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748934740a314954.html

最新回复(0)