0
私が達成しようとしているのは、ユーザーが個々のブログ記事/投稿にいるときに、一致するタグに基づいてユニークな "関連記事"を表示する場合です。Shopify - 現在の記事のタグに基づいてユニークな記事を取得する
は、ここで私がこれまで持っているものです。
{% for tag in article.tags %}
{% assign counter = 0 %}
{% for article in blog.articles %}
{% if article.tags contains tag and counter < 2 %}
{% assign counter = counter | plus: 1 %}
<li class="well">
{% if article.excerpt.size > 0 %}
<div class="thumb-article">
<a href="{{ article.url }}">
{{ article.excerpt }}
</a>
</div>
{% endif %}
<h3><a href="{{ article.url }}">{{ article.title }}</a></h3>
<p>{{ article.content | strip_html | strip_newlines | truncatewords: 40 }}</p>
</li>
{% endif %}
{% endfor %}
{% endfor %}
驚くべきことに、(私にはこれがShopifyと液体との私の初めての経験なので)それが重複した投稿を取得するとして、それはほんの少しあまりにもよく、動作します。
重複記事を取得できないようにする方法はありますか?
あなたのリンクはパスワードロックされており、私たちはそれを見ることができません。 –
このコードはあなたを助けますか? http://stackoverflow.com/questions/30042090/shopify-liquid-get-related-blog-posts –
またはこれ:https://apps.shopify.com/related-blog-posts –