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.
对于我的用户来说,“帖子”这个词并不能反映他们在提交“帖子”时实际添加的内容。对他们来说,这是一个项目。
我想将管理区域中出现的“帖子”一词更改为“项目”,我可以添加一个功能来做到这一点吗?
谢谢
将此添加到您的functions.php
add_filter('gettext', 'change_post_to_project'); add_filter('ngettext', 'change_post_to_project'); function change_post_to_project($translated) { $translated = str_ireplace('Post', 'Project', $translated); return $translated; }