반응형
워드프레스 테마의 타이틀 설정을 위해서는
after_setup_theme 액션 태그를 이용한다.
theme/functions.php
add_action('after_setup_theme', function(){
add_theme_support( 'title-tag' );
});
공식 문서의 설명을 보면
This hook is called during each page load,
after the theme is initialized.
It is generally used to perform basic setup,
registration, and init actions for a theme.
이 후크는 테마가 초기화된 후 각 페이지 로드 중에 호출됩니다.
일반적으로 테마에 대한 기본 설정,
등록 및 초기화 작업을 수행하는 데 사용됩니다.
https://developer.wordpress.org/reference/hooks/after_setup_theme/
반응형
'web > wordpress' 카테고리의 다른 글
워드프레스 포스트와 페이지 차이 (0) | 2023.05.17 |
---|---|
워드프레스 관리자 메뉴 추가 (0) | 2023.05.17 |
워드프레스 기본 style.css load하기 (0) | 2023.05.17 |
워드프레스 테마 내부 php 파일 직접 access 하기 (0) | 2023.05.16 |
워드프레스 테마 헤더/푸터 (0) | 2023.05.15 |
댓글