我只想在大卡特尔主页上显示一类产品。这是来自标准NEAT主题的代码。
我可以调整"get"标签来完成这项工作吗?或者是否需要另一个?
{% get products from products.all limit: theme.featured_products %}
{% if products != blank %}
<ul class="products_list">
{% for product in products %}
<li class="{{ product.css_class }}">
<a href="{{ product.url }}">
<img alt="Image of {{ product.name | escape }}" src="{{ product.image | product_image_url | constrain: '900' }}">
<b>{{ product.name }}</b>
<i>{{ product.default_price | money_with_sign }}</i>
{% case product.status %}
{% when 'active' %}
{% if product.on_sale %}<em>On Sale</em>{% endif %}
{% when 'sold-out' %}
<em>Sold Out</em>
{% when 'coming-soon' %}
<em>Coming Soon</em>
{% endcase %}
</a>
</li>
{% endif %}
{% endfor %}
</ul>
{% else %}
<p class="no_results">No products found.</p>
{% endif %}
{% endget %}
您需要使用基本的"for"循环来从特定类别中检索产品,使用"get"目前不起作用:
{% for product in categories.accessories.products limit:6 %}
<p>{{ product.name }}: {{ product.price }}</p>
{% endfor %}
将"配件"替换为代表你想要从中提取的类别的任何永久链接,你就做好了准备。