木材和 WPML 字符串翻译

Mar*_*lli 5 wordpress twig wpml timber

嗨,我正在使用 Timber,它曾经很简单

_e('string', 'theme') 
Run Code Online (Sandbox Code Playgroud)

用 WPML 翻译字符串,似乎没有在木材上工作关于如何翻译字符串的任何想法?

我尝试了以下方法,但没有任何效果

{{ _e('string') }} & {{ _('string') }}

{{ _e('string', 'theme') }}

{{ function("icl_translate", 'theme', 'string_identifier', 'string) }}

{{ dump(ICL_LANGUAGE_CODE) }} // Doesn't return anything, so not an option either 
Run Code Online (Sandbox Code Playgroud)

谢谢!

col*_*lin 5

是的,我用这个;

{{ __('All items', 'theme') }}
Run Code Online (Sandbox Code Playgroud)

而且它工作得很好。