Date format
Sure, here's the modified version:
The date format can be updated in your dashboard using the following attribute:
date_format: d M, Y
In the examples above, here's what each formatting character represents:
Sure, here's the information reformatted with an example for each format string:
d
: Day of the month, 2 digits with leading zeros.03
m
: Numeric representation of a month, with leading zeros.05
for May.Y
: A full numeric representation of a year, 4 digits.2023
F
: A full textual representation of a month, such as January or March.May
j
: Day of the month without leading zeros.3
for the 3rd day of the month.D
: A textual representation of a day, three letters.Mon
for Monday.l
(lowercase 'L'): A full textual representation of the day of the week.Monday
S
: English ordinal suffix for the day of the month, 2 characters (st, nd, rd or th. Works well withj
).rd
for the 3rd day of the month.M
: A short textual representation of a month, three letters.May
for May.
Here are some examples of date formats:
d, M Y
: 22, May 2023Y-m-d
: 2023-05-22m/d/Y
: 05/22/2023d/m/Y
: 22/05/2023F j, Y
: May 22, 2023D, M j, Y
: Mon, May 22, 2023l, F j, Y
: Monday, May 22, 2023jS F, Y
: 22nd May, 2023d-M-Y
: 22-May-2023