当前位置:首页-WordPress文章-WordPress-正文

通过 WordPress 多语言插件 WPML 的语言配置文件 wpml-config.xml 来支持 Polylang 翻译主题选项字段

网上已经有很多介绍 WordPress 多语言的插件了,比如 Polylang 和 WPML 等强大的多语言插件,但是只是介绍,很快都是能掌握怎么使用。今天我们要说的是如何使用 Polylang 插件来实现主题选项中字段的翻译。

WordPress多语言插件WPML在Polylang之前就已经创建了,因此对于一些插件和主题集成很好。WPML语言配置文件 wpml-config.xml已经可以翻译主题选项中的字段,Polylang 也支持 wpml-config.xml 文件的配置,而且 Polylang 的工作效率几本可以完成很多主题或者插件的翻译工作,所以我们创建一个 wpml-config.xml,添加以下代码到文件中:

  1. <wpml-config>
  2.     <custom-fields>
  3.         <custom-field action="copy">quantity</custom-field>
  4.         <custom-field action="translate">custom-title</custom-field>
  5.     </custom-fields>
  6.     <custom-types>
  7.         <custom-type translate="1">book</custom-type>
  8.         <custom-type translate="1">DVD</custom-type>
  9.     </custom-types>
  10.     <taxonomies>
  11.         <taxonomy translate="1">genre</taxonomy>
  12.     </taxonomies>
  13.     <admin-texts>
  14.        <!--my_themes_options 为主题选项的全局变量名-->
  15.         <key name="my_themes_options">
  16.            <!--其中其它名称则是选项的 ID-->
  17.             <key name="option_name_1" />
  18.             <key name="option_name_2" />
  19.             <key name="options_group_1">
  20.                 <key name="sub_option_name_11" />
  21.                 <key name="sub_option_name_12" />
  22.             </key>
  23.         </key>
  24.         <key name="simple_string_option" />
  25.     </admin-texts>
  26. </wpml-config>

并且配置支持父级关系选项,比如萨龙网络的主题幻灯片,一个幻灯片选项中有多个子幻灯片,这时就可以使用嵌套来翻译字段。

将wpml-config.xml文件放在主题或者 Polylang 插件的根目录,再前台插件后台『语言——字符串翻译』中进行翻译即可,如下图:

通过 WordPress 多语言插件 WPML 的语言配置文件 wpml-config.xml 来支持 Polylang 翻译主题选项字段 - 第1张

本文原创,作者:萨龙龙,其版权均为萨龙网络所有。
如需转载,请注明出处:https://salongweb.com/wordpress-polylang-theme-options.html