Convert custom field date format to “WordPress default”
I don’t see a function to do what you want directly, but it is not hard to retrieve the format that WordPress has configured: $df = get_option(‘date_format’); $tf = get_option(‘time_format’); You can then substitute $df wherever you had a hard-coded date format (or $tf for a time format). In your example, that would look like … Read more