Blogs

From Shopify Wiki

Jump to: navigation, search

The liquid variable blogs contains a collection of all of this shop’s blogs and articles. By calling a blog’s handle on the blogs drop you will either receive a blog object.

Example usage:

<ul>
{% for article in blogs.myblog.articles  %}
   <li>{{ article.title }}</li>
{% endfor %}
</ul>

This lists all article titles for the blog called myblog

Personal tools