Chris Lowry
Member
Posted 7 months ago #
Hey,
Is there a way to use tags as a custom taxonomy in wp_list_categories?
ie - wp_list_categories('show_count=1&title_li=&taxonomy=tags');
I'm looking for a list of my top ten tags, like so:
Shopping (15)
Fighting (7)
Roosters (6)
etc
Thanks!
Chris
from checking the codex, it seems to be possible:
http://codex.wordpress.org/Template_Tags/wp_list_categories
try:
wp_list_categories('show_count=1&title_li=&orderby=count&order=DESC&taxonomy=post_tag');
possibly use the 'number' parameter to limit the output
(untested)
Chris Lowry
Member
Posted 7 months ago #
Thanks mate. That worked perfectly!