Site logo

Archived topic

Display tag cloud in alphabetical order

3 replies · Started by Oliver on June 9, 2022

Viewing posts 1–4 of 4

Is it possible to make the tag cloud display the terms in alphabetical order?

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' );

Great stuff! Thanks a lot!

You're welcome

This archived topic is closed to new replies.