0
我正在使用shopify爲我的網站供電。我在使用博客時遇到問題。任何人都可以協助我嘗試爲所有帖子列在頁面上的每篇博客文章設置一個縮略圖嗎? 這是我迄今爲止的代碼,但這只是顯示每個帖子的標題和發佈的數據。Shopify博客文章創建縮略圖
{% for article in blog.articles %}
<a href="{{ article.url }}">{{ 'blogs.article.read_more' | t }} →</a>
<time pubdate datetime="{{ article.published_at | date: '%Y-%m-%d' }}">
{{ article.published_at | date: format: 'month_day_year' }}
</time>
{% endfor %}