• Resolved DJABHipHop

    (@pressthemes1)


    Add setting to Limit number of tags in WordPress tag cloud widget below is the modify code

    //Limit number of tags inside widget
    function mekshq_tag_widget_limit($args){
        $args['number'] = 10;
        return $args;
    }
    add_filter('widget_tag_cloud_args', 'mekshq_tag_widget_limit');

    limit-number-of-tags-in-wordpress-tag-cloud-widget

    • This topic was modified 11 months ago by DJABHipHop.
Viewing 1 replies (of 1 total)
  • Plugin Author Bowo

    (@qriouslad)

    Thank you for the suggestion. I do not see many sites using the tag cloud widget these days. So, this will probably not get included in ASE.

Viewing 1 replies (of 1 total)
  • The topic ‘add setting to Limit number of tags in WordPress tag cloud widget’ is closed to new replies.