We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

How can I paginate blog articles based on tags?

How can I paginate blog articles based on tags?

Tiber
Shopify Partner
31 4 6

I am trying to paginate blog articles based on tags. I have tried the code below, but it still returns all articles. Is it possible to filter arrays that have more the 50?

 

  {% paginate blogs['recipe-database'].articles | where 'tags','Chocolate'  by 10 %}
     
      	{% for article in blog.articles %}
     
           <h2>{{article.title}}</h2>
     
        {% endfor %}
      {% endpaginate %}

 

Replies 0 (0)