Created
June 16, 2013 06:33
-
-
Save wpspeak/5791052 to your computer and use it in GitHub Desktop.
Limit tag cloud widget to 20 items and order by count
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 | |
// Limit tag cloud widget to 20 items and order by count | |
add_filter('widget_tag_cloud_args','set_number_tags'); | |
function set_number_tags($args) { | |
$args = array('number' => 20, 'orderby' => 'count'); | |
return $args; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment