Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

Archive

Alphabetical Taxonomy list?

Started by Muut Archive 12 years ago · 4 replies · 854 views
12 years ago

I am trying to list taxonomy items alphabetically. I pulled the partial from the taxonomy list plugin (user/plugins/taxonomylist/templates/taxonomylist.html.twig) and am using it like this:

{% include 'partials/taxonomylist.html.twig' with {'taxono my':'location'} %}

But I'd like to have things ordered alphabetically instead of by # of uses. How can I accomplish this?

Thanks!

12 years ago

if you look in the taxonomylist.html.twig partial (in the plugin) you will see that really its just an associative array. You should be able to use a Twig Sort filter to sort this array alphabetically.

12 years ago

Thanks. Doing {% for tax,value in taxlist[taxonomy]|sort %}
does give me a different order, but not alphabetical. Not sure what that order is — maybe just the order in which the tax list is being built, which seems kind of random. Any other ideas?

12 years ago

Awesome... {% for tax,value in taxlist[taxonomy]|ksort %} now works like a charm. Thanks.

👍 1

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1296 9 years ago
Archive · by Muut Archive, 9 years ago
2 890 9 years ago
Archive · by Muut Archive, 9 years ago
2 4019 9 years ago
Archive · by Muut Archive, 9 years ago
1 2894 9 years ago
Archive · by Muut Archive, 9 years ago
3 1078 9 years ago