[Resolved] Display tag cloud in alphabetical order

Home Forums Support [Resolved] Display tag cloud in alphabetical order

Home Forums Support Display tag cloud in alphabetical order

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2248111
    Oliver

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

    #2248164
    David
    Staff
    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' );
    #2248210
    Oliver

    Great stuff! Thanks a lot!

    #2248236
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.