Quote:
Originally Posted by femdomdestiny
Hi: I have two question regarding this theme that maybe somene more experienced will know.Is there some plugin that will help do next:
1. exclude defined tags from showing on blog?
2. show only defined TAGS in widget area.
thanks
|
you could run a filter through the tag widget to exclude certain tags.
Code:
function my_tag_cloud_filter($args = array()) {
$args['exclude'] = array(20, 80, 92); // tag ids to exclude
return $args;
}
add_filter('widget_tag_cloud_args', 'my_tag_cloud_filter', 90);
like so.
for the main front page, you could do a custom query to exclude those tags.