1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Liquid 日付表示の変更方法

Posted at

Liquid 日付フォーマットの変更の仕方

今回はブログ記事などで使う、日付表示の仕方です。
当初は何度もググって調べ直してました!
dateオブジェクトだけ呼び出しても、任意の表示にならずに結構戸惑いました。
覚えるまで意外と時間がかかったので、非エンジニアさんやまだコードを書くことに慣れてないリキッダーさんお役立してください。

書き方

// /で区切りたい時 例 00/00/00
{{ article..published_at | date: '%Y/%m/%d'}}

// .で区切りたい時 例 00.00.00
{{ article..published_at | date: '%Y.%m.%d'}}

// 年月日で区切りたい時 例 00年 00月 00日
{{ article..published_at | date: '%Y年 %m月 %d日'}}

説明

ブログ記事の公開日を例に説明しています。
表示したいdateに対して、dateフィルターで表示を変更しています。

参考:
https://shopify.dev/docs/themes/liquid/reference/filters/additional-filters/#date

こちらちょっと便利でわかりやすいです。
http://www.strfti.me/

ただ、どれも英語…
わかりずらいかと思います。
上記のコードを参考にされてください。
誰かのお役に立てれば幸いです!

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?