Info
- 6 posts
- 3 voices
- Started 5 years ago by CirceDesign
- Latest reply from so1o
- This topic is not a support question
Big to Small Tag listings
-
- Posted 5 years ago #
Is there a way to present the Hot Tag listing in a big to small order? If there is a simple code tweak I can do, let me know. Otherwise, as someone who knows very little about coding, I would love it if someone came up with a way to do this. Does anyone else agree?
-
- Posted 5 years ago #
So, what you're asking is for the tag-could to be re-ordered, based on a tag's popularity rather than its alphabetic position?
-
- Posted 5 years ago #
yes, exactly that
-
- Posted 5 years ago #
the easiest way right now is to change the function tag_heat_map()
change the line
uksort($counts, 'strnatcasecmp');to
asort($counts); //or
arsort($counts); //reversemay we should have a filter in the function make it pluggable..
-
- Posted 5 years ago #
-
- Posted 5 years ago #
with the change set 554 you can now create a function to sort the tags in array as you like and add a filter to sort_tag_heat_map
add_filter('sort_tag_heat_map', 'your_custom_sorting_function') -
You must log in to post.