Skip to content

Instantly share code, notes, and snippets.

@meloniq
Created January 30, 2016 07:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meloniq/52658d93f08291b88a1b to your computer and use it in GitHub Desktop.
Save meloniq/52658d93f08291b88a1b to your computer and use it in GitHub Desktop.
[WP Tags Cloud widget] Set number of tags you would like to display
<?php
function childtheme_set_tag_cloud_items_number( $args ) {
// set number of tags you would like to display in the WP Tags Cloud widget
$args['number'] = 69;
return $args;
}
add_filter( 'widget_tag_cloud_args', 'childtheme_set_tag_cloud_items_number', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment