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.
我想构建我的标题标签以显示:站点名称 | 页面标题
根据法典,这应该有效:
<?php wp_title('|',true,'right'); ?><?php bloginfo('name'); ?>
但它正在反向呈现:页面标题| 站点名称
任何其他受控的位置,可能会导致覆盖?
根据法典,您可以编辑标题以完全按照您的意愿进行操作。
<title><?php is_home() ? bloginfo('description') : wp_title('', false); ?> | <?php bloginfo('name'); ?></title>
那是你要找的吗?