• hello

    is there any chance to limit the tags number in widget? i have many tags, but want to display for example only 30 most popular. it is possible in standart wp theme, where i can edit sidebar file and wp_tag_cloud, but i cannot find it with your theme. is it possible please? thank you so much for the great theme, just the tags number makes it a bit unusable.

    thank you much in advance for any help, have a nice summer, radim cillik cz/eu

Viewing 1 replies (of 1 total)
  • generally, to set the parameters of the default tag cloud widget, try and use a filter function, to be added into functions.php of your (child) theme;

    example:

    add_filter('widget_tag_cloud_args','set_tag_cloud_numbers');
    function set_tag_cloud_numbers($args) {
    $args = array_merge( $args, array('number' => 30) );
    return $args; }
Viewing 1 replies (of 1 total)
  • The topic ‘limit tags number in widget’ is closed to new replies.