Hi all
Using a simple Basic Text widget with dynamic data {post date}
Is there a way to change the display format?
Want to go from:
June 20, 2023
to just
June, 2023
Thanks!
Pete
Hi all
Using a simple Basic Text widget with dynamic data {post date}
Is there a way to change the display format?
Want to go from:
June 20, 2023
to just
June, 2023
Thanks!
Pete
You can render the current date through dynamic data.
{current_date}
– Returns the current date with the format defined at WordPress > Settings > General > Date Format
You may specify a different date format using the PHP date format, for example:
{current_date:Y}
{current_date:Ymd}
{current_date:Y-m-d}
{current_date:Y.m.d}
{current_date:Y/m/d}
{current_date:Y m d}
{current_date:g:i A}
Many thanks @digismith !