Twig Components / Methods / slug
Note: You are currently reading the documentation for Bolt 5.0. Looking for the documentation for Bolt 5.2 instead?
slug
is a Twig filter to be used to transform any string into a slug-like value. This can be very useful when you're
hand-crafting links to categories, pages or other structures where you need a URL-safe representation of a string.
In this example, we build links to all category listing pages:
<ul>
{% for category in app.config.get('taxonomy/categories/options') %}
<li><a href="/category/{{ category|slug }}">{{ category }}</a></li>
{% endfor %}
<ul>
Edit this page on GitHub
Couldn't find what you were looking for? We are happy to help you in the forum, on Slack or on Github.
Couldn't find what you were looking for? We are happy to help you in the forum, on Slack or on Github.