wp_count_terms() counts the number of terms in a taxonomy but not the number of post that have those terms and I've found that wp_count_post() does not accept a taxonomy.
So whats a guy gotta do to count the number of post in a taxonomy term?
Example:
Term: Apples Post: 89 (this is what I want to get, the number of post with the 'Apples' taxonomy)
Thanks!
wp_count_terms() counts the number of terms in a taxonomy but not the number of post that have those terms and I've found that wp_count_post() does not accept a taxonomy.
So whats a guy gotta do to count the number of post in a taxonomy term?
Example:
Term: Apples Post: 89 (this is what I want to get, the number of post with the 'Apples' taxonomy)
Thanks!
Share Improve this question asked Dec 16, 2013 at 20:33 Jon FurryJon Furry 1872 gold badges3 silver badges13 bronze badges1 Answer
Reset to default 9The function you are looking for is get_term() http://codex.wordpress/Function_Reference/get_term
and the code would look something like this:
$term = get_term( 1, 'category' );//for example uncategorized category
echo 'count: '. $term->count;
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745167893a4614745.html
评论列表(0条)