How to get article author personal website url

Topic summary

A developer needed to retrieve a blog article author’s personal website URL using Shopify’s Liquid templating language.

Initial Problem:

  • The {{ article.user }} object successfully returned other author fields (bio, avatar, image, name)
  • Attempts to access the website URL using {{ article.user.website }} and similar variations failed

Solution:
The correct Liquid syntax is {{ article.user.homepage }} to retrieve the author’s website URL.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

I am able to get other user fields using {{ article.user }} object (as explained on: https://socalledhacker.com/shopify-theme-dev-blog-author-info/)

However, I am not able to find a way to add author’s website url. How to do that? I tried: {{ article.user.website }} and other combinations.

Bio, avatar, image, name works fine.

Solved it, replying here for anyone who may need this solution too.

Homepage is: {{ article.user.homepage }}