2015-02-06 9 views

답변

1

열고 header.php 테마 파일

추가 :

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

header.php

당신의 모습 &raquo;을 제거 할 수 있습니다 :»(그것은 당신 개까지의)


밑줄 테마는 워드 버전 4.1에 도입 된 바와 같이 타이틀 태그를 지원하기 위해 그들은 또한 functions.php에서 언급 add_theme_support()를 사용

/* 
    * 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');