View Single Post
Old 02-02-2012, 03:31 PM  
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,372
Quote:
Originally Posted by femdomdestiny View Post
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.
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote