Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当您在 Wordpress 后端并将鼠标悬停在“设置”上,然后单击“常规”时,会出现一个页面,其中当然包含该站点的常规设置。每个输入字段的标签如下:站点标题、标语、Wordpress 地址 (URL)、站点地址 (URL) 等。
我希望在我的functions.php 中添加一个函数,以获取一个允许我更改这些标签的主题。
这甚至可能吗?还是我只需要硬编码?
你可以创建一个自定义的翻译,或者只是挂钩到 Wordpress 的翻译功能(使用gettext过滤器)并提供你自己的翻译:
gettext
add_filter('gettext', 'my_gettext', 10, 3); function my_gettext($translation, $text, $domain) { if ($text == 'Site Title') { $translation = 'Foo Bar'; } return $translation; }
如果要更改标签的值,可以编写一个函数,直接更新 wp_options 表中的设置。如果您想更改标签,Richard M 发布的解决方案将起作用。