我正在尝试通过匹配其代码来展示产品页面上的博客帖子。我有这个代码,但问题是它只获取最新的50个帖子。我怎样才能遍历所有文章?
{% for article in blogs.news.articles %}
{% for tag in product.tags %}
{% if article.tags contains tag %}
{{ article.title }}
{% endif %}
{% endfor %}
{% endfor %}

答案 0 :(得分:0)
对于收藏和博客,Shopify每个循环限制为50个项目。这意味着您无法超越这些限制。
设置此限制是为了尽可能减少对服务器的请求。
所以简短的回答是你不能传播50多篇文章或产品。