Last active
August 29, 2015 14:01
-
-
Save julzmon/80180ebbf3500a90109b to your computer and use it in GitHub Desktop.
Craft date field showing only year or month
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Like this: {{ entry.d_date.year }} | |
Or: {{ entry.d_date | date("Y") }} | |
Like this: {{ entry.d_date.month }} | |
Or: {{ entry.d_date | date("m") }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment