We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Automatically format date attribute based on the given date format in WPML > String translation
functions.php
function translate_date_format($format) { if (function_exists('icl_translate')) $format = icl_translate('Formats', 'Y/m/d', 'Y/m/d'); return $format; } add_filter('option_date_format', 'translate_date_format');
Usage in Twig templates
{{__('Published on %s')|format(date) }}