• Resolved unottico1965

    (@unottico1965)


    hi, inside WordPress how is possible to change the number of tags
    that after you can see in the page like in the picture ???
    for example, i’m sure i had tagged “Pinocchio (1940)”, and inside
    the article i have tagged: 1940, but i cannot see in the list of the tags.
    thank to all for the support.

    [img]https://i.imgur.com/HTXESsJ.jpg[/img]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi!
    The Tag Cloud Widget won’t let you by default change the number of tags.

    I would choose a plugin that displays a more customizable (and modern) tag cloud. Here are a few options:

    Hope this help!

    Thread Starter unottico1965

    (@unottico1965)

    thank you Vlad.
    i was sure that could change the number of tags
    inside the WordPress codes, but right now
    i go to try your options.
    thank very much.

    If you are comfortable coding in WP, you can add the following code to functions.php file of your theme. If you will update the theme, the code will be removed.

    add_filter( 'widget_tag_cloud_args', 'tag_cloud_limit' );
    function tag_cloud_limit($args){ if ( isset($args['taxonomy']) && $args['taxonomy'] == 'post_tag' ){
     $args['number'] = 20; //change 20 with your desired number!
    } return $args; }

    I reccomended some plugins, because coding can be tricky for some.

    Hope this helps!

    Thread Starter unottico1965

    (@unottico1965)

    thank you again.
    i can try the code and i’m sure it can work perfectly.
    but, the firs of 3 plug-in you have show me, is
    very very beautiful.
    thank again.

    I am happy that works for you!

    If your question has been answered, we would love if you would mark this topic as resolved in the sidebar. This helps our volunteers find the topics that still need attention and more people will get helped, possibly like you did.

    Thread Starter unottico1965

    (@unottico1965)

    oh sorry, i don’t had do.
    thank.

    Thread Starter unottico1965

    (@unottico1965)

    hi Vlad, i have copy your code for the tags
    and right now i have made it to work in the new tema.
    i have changed numbero 20 with zero, and now i can
    see every tags.
    thank you very much.
    you are very smart!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘change number of tags’ is closed to new replies.