Releases: mrnebbi/craft-template-tools
Releases · mrnebbi/craft-template-tools
Version 2.0.0
1.2.0
Version 1.2.0 adds the new getQueryStrings function. This allows you to even duplicate URL queries into your Twig template.
getQueryStrings
Pull an array of query strings from Craft. This gets around the problem of duplicated query string keys being lost, turning them into an array you can loop through.
An array will be returned with objects. Use .key
and .value
.
Return all URL queries
{% for query in getQueryStrings() %}
{{ query.key }} - {{ query.value }}
{% endfor %}
Return only URL queries that match a key
{% for query in getQueryStrings('lookForKey') %}
{{ query.key }} - {{ query.value }}
{% endfor %}
1.1.1
1.1.0
Version 1.0
First release of Template Tools plugin for Craft CMS