WP tag cloud
-
Hi,
Can anyone help me how to filters tags in the widgets tag cloud sidebar, I have found a little code that do that, but insteaded is filtering the category. This is what I have in my functions.php:
add_filter( ‘widget_tag_cloud_args’, ‘my_function_tags’);
function my_function_tags( $args ) {
$args[ ‘exclude’ ] = array(1, 2, 8, 13);
return $args;
}Thank you in advance.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘WP tag cloud’ is closed to new replies.