3

How is it possible to list all the terms in a taxonomy in Bolt? Not the terms applied to a record but all existing terms (like a tagcloud or a category list sidemenu)?

Dimitris K
  • 55
  • 6

2 Answers2

3

Directly in the template, it could be done like this:

{% for category in app.config.get('taxonomy/categories/options') %}
    {{ category }}
{% endfor %}
Pang
  • 9,564
  • 146
  • 81
  • 122
madc
  • 1,674
  • 2
  • 26
  • 41
1

You can use the Taxonomylist extension for that http://extensions.bolt.cm/view/691bcf6f-02f9-4584-a275-baa210bfbe50

jadwigo
  • 339
  • 1
  • 9