wp_tag_cloud inline CSS
Add a filter for the tag cloud in your functions.php: add_filter( ‘wp_tag_cloud’, ‘wpse_50242_unstyled_tag_cloud’ ); /** * Change tag cloud inline style to CSS classes. * * @param string $tags * @return string */ function wpse_50242_unstyled_tag_cloud( $tags ) { return preg_replace( “~ style=”font-size: (\d+)pt;”~”, ‘ class=”tag-cloud-size-\1″‘, $tags ); } In your template you call the tag … Read more