🚫Article object
These Shopify REST-backed Liquid objects are legacy. The product and variant Liquid objects no longer work, and Shopify is phasing out the REST Admin API that these objects depend on. Use GraphQL for new work; see the Shopify REST Admin API notice and migration guides.
How to access it
Use
{% for article in blog.articles %}Look up specific articles by their ID, using
{{ shop.blogs[12345].articles[67890] }}Use
{{ shop.articles.authors }}for an array of the store's article authorsUse
{{ shop.articles.tags }}for a array of the store's article tags
What it contains
The related blog object:
{{ article.blog }}The related metafields object:
{{ article.metafields }}
Last updated
Was this helpful?