Skip to content

continue

With continue you skip the current loop iteration and go to the next one.

INFO

The continue command can only be placed inside the body of for tag.

Example:

Data
json
{
  "products": [
    {
      "slug": "product-1",
      "price": 76
    },
    {
      "slug": "YouCan",
      "price": 100
    },
    {
      "slug": "product-2",
      "price": 30
    },
    {
      "slug": "product-3",
      "price": 124
    },
  ]
}

Note: Data is only refereed as a reference for this example and is in no means reflecting real world data.

liquid
{% for product in products %}
  {% if product.price > 80 %}
    {% continue %}
  {%- else -%}
    {{- product.slug -}} | {{- product.price -}}
  {%- endif -%}
{% endfor %}

Output

html
product-1 | 76
product-2 | 30