APIs & Integrations

TSharma55
メンバー

custom date format for blog post

解決

{{ rec_post.publish_date|datetimeformat('%B %e, %Y')}}
I am using this in blog post which is rendering December 12, 2024.

But can we get the customize date format from which I get
Dec 12, 2024 >

0 いいね!
1件の承認済みベストアンサー
JTBuys
解決策
トップ投稿者 | Diamond Partner
トップ投稿者 | Diamond Partner

custom date format for blog post

解決

@TSharma55, that filter has been deprecated. I recommend using the hubl below. This hubl uses the format_date filter which is based on unicode LDML patterns. The MMM portion will format the month in the abbreviated style you want.

 

{{rec_post.publish_date|format_date('MMM d, y')}}

 

元の投稿で解決策を見る

1件の返信
JTBuys
解決策
トップ投稿者 | Diamond Partner
トップ投稿者 | Diamond Partner

custom date format for blog post

解決

@TSharma55, that filter has been deprecated. I recommend using the hubl below. This hubl uses the format_date filter which is based on unicode LDML patterns. The MMM portion will format the month in the abbreviated style you want.

 

{{rec_post.publish_date|format_date('MMM d, y')}}