Skip to content

Instantly share code, notes, and snippets.

@mopx
Created August 20, 2014 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mopx/e2f4b652c11f1f84829d to your computer and use it in GitHub Desktop.
Save mopx/e2f4b652c11f1f84829d to your computer and use it in GitHub Desktop.
Add this to your functions.php file
add_filter('option_date_format', 'translate_date_format');
function translate_date_format($format) {
if (function_exists('icl_translate'))
$format = icl_translate('Formats', $format, $format);
return $format;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment