WordPress Underscores主题网站标题不是第一个

时间:2015-02-06 23:23:17

标签: wordpress themes underscores-wp

最近的Underscores主题似乎先发布页面标题,然后发布网站标题。如何更改此项以使网站标题成为第一个?

1 个答案:

答案 0 :(得分:1)

打开 header.php 主题文件

添加:

<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>

header.php

您可以删除&raquo;,如下所示:»(这取决于您)


下划线主题是使用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' );