Created
October 20, 2016 13:23
-
-
Save ville6000/97dd69ebfa2253bcd4165b2c8bf9ec40 to your computer and use it in GitHub Desktop.
Display all tag cloud tags in the same font size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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