문제

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 ~와 함께 속성
제휴하지 않습니다 wordpress.stackexchange
scroll top