我正在研究多站点。其中一个网站是英语,另一个是西班牙语。我需要更改西班牙语页面的文本,但我无法在任何地方找到它。
显示英文文本的页面是front-page.php。
我不知道西班牙语应该去哪里:
<div class="mod_a clearfix">
<h1><i>/</i><i>/</i><i>/</i> <?php _e('TEAMWORK','boot_Strap'); ?></h1>
<h2><?php _e('Success depends on collaboration','boot_Strap'); ?></h2>
<p><?php _e('Success is a function of multiple factors – all of which need to come together if world-class performance is to be achieved. It is easy to focus on the race alone – but the conditions for success have been established long before the starting flag drops.','boot_Strap'); ?></p>
</div>
如何更改网站的其他版本?
答案 0 :(得分:1)
关键是php _e
。 php
函数调用翻译字符串。见http://codex.wordpress.org/Function_Reference/_e
您的主题应该包含不同语言字符串的pot
文件。见https://developer.wordpress.org/themes/functionality/localization/