add setting to Limit number of tags in WordPress tag cloud widget
-
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');
Viewing 1 replies (of 1 total)
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.