I'm looking for a plugin that will list the most recent 100 tags that I've added to WP. Anyone know of one? I haven't been able to find one with the search.
I'm looking for a plugin that will list the most recent 100 tags that I've added to WP. Anyone know of one? I haven't been able to find one with the search.
Why not just write a query that handles this for you in your themes function file and call the display method from your sidebar.
I have limited php knowledge. Not sure how to do that. Could you point me in the right direction?
I know that the tags are stored in the table wp_terms in the name field. And they are identified as tags by post_tag being in the field taxonomy in the wp_term_taxonomy table.
I'd like to display the most recent 100 tags added in alphabetical order and as links to a page with all the posts that have that tag, but pulling just the last 100 used also may give a list with duplicates since each time a tag is added to a post it is added to the wp_terms table.
Is this something I'd need to set up an array for?
This topic has been closed to new replies.