Wordpress:将翻译后的字符串添加到变量?
Wordpress : Add a translated string to a variable?
我想将翻译后的字符串保存在变量中而不显示它。
我实际上有这个代码:
<?php $str = _e('mystring', 'myplugin' ); ?>
有什么建议吗?
您可以使用 __()
函数表示 returns 值。 _e()
echo 是要筛选的值。
使用
<?php $str = __('mystring', 'myplugin' ); ?>
我想将翻译后的字符串保存在变量中而不显示它。
我实际上有这个代码:
<?php $str = _e('mystring', 'myplugin' ); ?>
有什么建议吗?
您可以使用 __()
函数表示 returns 值。 _e()
echo 是要筛选的值。
使用
<?php $str = __('mystring', 'myplugin' ); ?>