Is there an argument for get_terms which I can fetch terms that only have say over 2 posts associated with it?
I have a terms page which lists all my terms for ‘artists’, the page is huge but a lot of these terms that only have one post so I would like to show only significant terms.
Leave a Reply
You must be logged in to post a comment.
Give:
a shot. It will grab all the terms and then run a check to see if the
$term->count
is greater than 2 and if so, print out those terms.This does basically the same as @Zach already added, but in a more smart/unreadable way 🙂