Skip to content

Date Twig filters

Date and time Twig filters format a date and time object (DateTimeInterface) in one of the formats defined in user preferences.

  • ez_full_datetime
  • ez_full_date
  • ez_full_time
  • ez_short_datetime
  • ez_short_date
  • ez_short_time

If the DateTimeInterface argument is null, the filter returns the current date and time in the selected format.

1
{{ content.contentInfo.publishedDate|ez_full_datetime }}

The filters also accept an optional timezone parameter for displaying date and time in a chosen time zone:

1
{{ content.contentInfo.publishedDate|ez_short_datetime('PST')  }}