List Taxonomy Terms in CMS Bolt

How can you list all the terms in a taxonomy in Bolt? Not terms applied to the post, but all existing terms (like tagcloud or sidemenu category list)?

+3


source to share


2 answers


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



+1


source


Directly in the template, this can be done as follows:



{% for category in app.config.get('taxonomy/categories/options') %}
    {{ category }}
{% endfor %}

      

+3


source







All Articles