Home › Forums › Support › Display tag cloud in alphabetical order This topic has 3 replies, 2 voices, and was last updated 2 years, 9 months ago by David. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts June 9, 2022 at 5:07 am #2248111 Oliver Is it possible to make the tag cloud display the terms in alphabetical order? June 9, 2022 at 6:06 am #2248164 DavidStaff Customer Support Hi there, the Tag Cloud widget has this filter: https://developer.wordpress.org/reference/hooks/widget_tag_cloud_args/ You will need to changes the queries orderby argument, so give this PHP Snippet a try: function db_widget_custom_tag_cloud($args) { $args['orderby'] = 'title'; $args['order'] = 'ASC'; return $args; } add_filter( 'widget_tag_cloud_args', 'db_widget_custom_tag_cloud' ); June 9, 2022 at 6:46 am #2248210 Oliver Great stuff! Thanks a lot! June 9, 2022 at 7:12 am #2248236 DavidStaff Customer Support You’re welcome Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In