Back to BlogTags with AJAX Support

Mennax
Mennax

Thanks for the plugin, very useful!

Is this the right way to link the search-posts page? (blog-tag.htm has search-posts component)

{% for tag in post.tags %}
    <a href="{{ 'blog-tag'|page({slug:tag.slug}) }}">
    <span>{{ tag.name }}</span> </a>{% if not loop.last %}, {% endif %}
{% endfor %}

Updating. Otherwise current page number appended to tag url links

{% for tag in post.tags %}
    <a href="{{ 'blog-tag'|page({slug:tag.slug, page:false}) }}">
    <span>{{ tag.name }}</span> </a>{% if not loop.last %}, {% endif %}
{% endfor %}

Last updated

1-1 of 1