Home › Forums › Jevelin Theme › Tag Cloud Limiter
Home › Forums › Jevelin Theme › Tag Cloud Limiter
Where is the TAG Cloud Limiter, the number of TAGs being thrown out is causing massive white space?
It’s not allowed, or there is no way to limited or sot by post count in the Widget itself and this is visually unappealing.
Hi Deon,
Thank you for your question.
Which widget are you using to display them?
Could you please share the page URL from your site where it is displaying so that I can help you?
Best regards,
Shufflehound team
Solution for this topic
It’s the Tag Cloud Widget which the Demo Data forces.
I’ll go and manually PHP Code the hard way and limit the output.
Added the following to the Functions.php
function prefix_widget_tag_cloud_args( $args ) {
$args[‘number’] = 23;
return $args;
}
add_filter( ‘widget_tag_cloud_args’, ‘prefix_widget_tag_cloud_args’, 10, 1 );
Problems solved.
Awesome great to see you got that solved.
Please advise if you have more questions.
Have a fantastic day!