最近的Underscores主题似乎先发布页面标题,然后发布网站标题。如何更改此项以使网站标题成为第一个?
答案 0 :(得分:1)
打开 header.php 主题文件
添加:
<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
您可以删除»
,如下所示:»(这取决于您)
下划线主题是使用add_theme_support()以支持wordpress版本4.1中引入的标题标记,并且它们也在 functions.php
中提到/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );