I need to exclude all tags in a specific category form a custom taxonomy from appearing when I call WP Tag Cloud.
Can this be done?
If not is there another way to call all the tags on the website?
I need to exclude all tags in a specific category form a custom taxonomy from appearing when I call WP Tag Cloud.
Can this be done?
If not is there another way to call all the tags on the website?
Use the "exclude" parameter, for example:
<?php wp_tag_cloud('smallest=12&largest=20&exclude=67'); ?>
Where '67' is the id of the tag you want excluded.
more info
wp_tag_cloud()
You must log in to post.