So I have the date like this in wordpress, I get it from a custom metabox where is stored like this, 23/02/2012, now how can I set wp_locale in WP or something like that, and I need to convert the date to: Monday 23 February 2012, but I need also to set the language, thats why I need that wp_locale because that output will be in Dutch.Thank you
So I have the date like this in wordpress, I get it from a
Share
The date format can be converted with the code below as a guide.
The
str_replaceis necessary because with/PHP assumesm/d/yAmerican date format, not the Europeand/m/y.As for doing this in WordPress with i18n support, you might consider http://codex.wordpress.org/Function_Reference/date_i18n