Forums

Get a list of top tags with a (x) number of posts (3 posts)

  1. 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

  2. alchymyth
    The Sweeper
    Posted 7 months ago #

    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)

  3. Chris Lowry
    Member
    Posted 7 months ago #

    Thanks mate. That worked perfectly!

Reply

You must log in to post.

About this Topic