I’m using this code:
<?php wp_tag_cloud( array( 'taxonomy' => 'channels') );?>
To display custom taxonomy as a cloud tag.
How can display with all links being the same size? I can’t seem to override the inline styles.
Leave a Reply
You must be logged in to post a comment.
How about passing the
smallest
andlargest
arguments towp_tag_cloud()
and making them both the same?Update: use
get_terms()
to get multiple taxonomy terms:Strip the inline CSS with a filter on
'wp_tag_cloud'
: