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.
你能帮我在word-press中将“主页”按钮名称更改为“博客”吗?
稍后我可以使用“主页”名称创建一个新页面。它是否与 word-press 已经提供的默认“主页”冲突?
非常感谢
转到您的 wp-include 文件夹并打开 post-template.php 文件。在此文件下搜索以下代码
if ( ! empty($args['show_home']) ) { if ( true === $args['show_home'] || '1' === $args['show_home'] || 1 === $args['show_home'] ) $text = __('Home');
现在将 $text 从 Home 更改为您想要的。