Tagged Questions
1
vote
4answers
814 views
Loop through all tags & output posts in alphabetical list
I have a bunch of posts that each have multiple tags, and I'm trying to find a way to output all of them on a single page, organized under an alphabetical listing of their respective tags. E.g. if ...
0
votes
1answer
115 views
Sorting tags by name
I'm displaying a lit of tags when they have a description. I'd like to sort them by name instead of by post quantity. Is there a way to do this?
<?php
$tags = get_tags();
if ($tags) {
...
1
vote
1answer
779 views
Sort list of Wordpress Page under tag when is_tag() called
I have a site that I'm having so much trouble to try to sort the order of a list of Pages based on their tag.
I've build this site over a year ago, with wordpress at the time there isn't any tag ...