To format a date and have it output the time in the language which is configured in WordPress, use the date_i18n function.
It uses the same parameters as date().
Example
Before
date('j F', time());
After
date_i18n('j F', time());
To format a date and have it output the time in the language which is configured in WordPress, use the date_i18n function.
It uses the same parameters as date().
Example
Before
date('j F', time());
After
date_i18n('j F', time());