0
가장 최근의 언더 코어 테마는 페이지 제목을 먼저 게시 한 다음 사이트 제목을 게시하는 것으로 보입니다. 사이트 제목을 먼저 사용하려면 어떻게 변경해야합니까?WordPress 밑줄 테마 사이트 제목 Not
가장 최근의 언더 코어 테마는 페이지 제목을 먼저 게시 한 다음 사이트 제목을 게시하는 것으로 보입니다. 사이트 제목을 먼저 사용하려면 어떻게 변경해야합니까?WordPress 밑줄 테마 사이트 제목 Not
열고 header.php 테마 파일
추가 :
<title><?php bloginfo('name'); ?> <?php if (is_single()) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
당신의 모습 »
을 제거 할 수 있습니다 :»(그것은 당신 개까지의)
밑줄 테마는 워드 버전 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');