Skip to content

Instantly share code, notes, and snippets.

@ville6000
Created October 20, 2016 13:23
Show Gist options
  • Save ville6000/97dd69ebfa2253bcd4165b2c8bf9ec40 to your computer and use it in GitHub Desktop.
Save ville6000/97dd69ebfa2253bcd4165b2c8bf9ec40 to your computer and use it in GitHub Desktop.
Display all tag cloud tags in the same font size
<?php
function my_theme_widget_tag_cloud_args( $args ) {
$args['largest'] = 1;
$args['smallest'] = 1;
$args['unit'] = 'em';
return $args;
}
add_filter( 'widget_tag_cloud_args', 'my_theme_widget_tag_cloud_args' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment