Anyway to increase the number of Most Used Tags in post editor?
-
I need to increase the number of Most Used Tags in post editor and I tried to add this code but didn’t work.
function increase_most_used_tags($args) {
$args['number'] = 20; // Change the number to the desired amount of tags
return $args;
}
add_filter('tag_cloud_widget_args', 'increase_most_used_tags');Anyway to increase it from 10 to any larger number?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.