I have current_time in theme and it displays date like: THURSDAY, NOVEMBER 10, 2016. But I need to translate it to Persian. How can I do this?

有帮助吗?

解决方案

Used date_i18n instead of current_time. For example:

echo date_i18n( 'Y. F j.',  strtotime( get_the_time( "Y-m-d" ) ) );

其他提示

It may be worth looking at using something like date_i18n, which returns the date/time in a localised format

https://codex.wordpress.org/Function_Reference/date_i18n

To recreate the current_time format you showed in your example, you could use something like date_i18n('l, F j, Y');

许可以下: CC-BY-SA归因
scroll top