How to show tags in posts, orderby count(most used) not alphabetically?
This is possible by first getting the raw tag data with get_the_tags() sorting the results by the count property of each tag with usort(), then looping through them and outputting them as links: /* * Get array of tags and sort by count. */ $tags = get_the_tags(); if ( $tags && ! is_wp_error( $tags ) … Read more