Support » Plugins » tag cloud does not include latest tags

  • Hi,
    Is it a common thing that after a while the tag colud does not include the newer tags? to solve this do we need to deactivate ad reactivate the plugin?

Viewing 1 replies (of 1 total)
  • the number of tags shown in the cloud is limited (to 45 per default).

    this might give you an idea about the possible paramters:
    http://codex.wordpress.org/Function_Reference/wp_tag_cloud

    if you are using the default tag cloud widget, you can set and change the parameters by using some code like this in functions.php of your theme:

    add_filter('widget_tag_cloud_args','set_number_tags');
    function set_number_tags($args) {
    $args = array('number'    => 100, 'largest'    => 25);
    return $args;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘tag cloud does not include latest tags’ is closed to new replies.