Skip to content

Instantly share code, notes, and snippets.

@gstricklind
Created March 29, 2016 21:27
Show Gist options
  • Save gstricklind/8c6e009d746880becd1830eaf630cd2b to your computer and use it in GitHub Desktop.
Save gstricklind/8c6e009d746880becd1830eaf630cd2b to your computer and use it in GitHub Desktop.
/*========================================================================
Tag Cloud Filter
========================================================================*/
add_filter('widget_tag_cloud_args', 'filter_tag_cloud_limit');
function filter_tag_cloud_limit($args){
$args['number'] = ''; // Removes limit on number of tags
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment