Re: foodadelphia
Ah here it is, ‘sort_tag_heat_map’
So this is a rough guess, untested:
<?php
// sort hot tag heat maps by descending tag count
remove_filter('sort_tag_heat_map', 'bb_sort_tag_heat_map');
add_filter('sort_tag_heat_map', 'my_sort_tag_heat_map');
function my_sort_tag_heat_map( &$tag_counts ) {
arsort($tag_counts, SORT_NUMERIC);
}
?>
try stuffing that into functions.php
and put it into your template folder.