答案 0 :(得分:0)
对于可翻译的字符串,您需要在字符串周围使用任何WordPress翻译函数:
例如:
<a href="#">This string</a> <-- this will not be translatable
<a href="#"><?php __e('This string','your-namespace'); ?></a> <-- this will be translatable.
您可以使用多种方法进行内容翻译:{{1}},__()
和其他方法。请阅读有关翻译的文档中的更多内容:https://codex.wordpress.org/L10n