최신버전 깔아도 php8버전 메인 타이틀 앞에 ' | ' 붙는거 해결 법 정보
최신버전 깔아도 php8버전 메인 타이틀 앞에 ' | ' 붙는거 해결 법
본문
head.sub.php 수정
이것 저것 해봤는데 그냥 인덱스 로드랑 내부 페이지를 구분시켜 버리는게 제일 편하더라고요.
if (!isset($g5['title'])) {
$g5['title'] = $config['cf_title'];
$g5_head_title = $g5['title'];
}
else {
$g5_head_title = $g5['title']; // 상태바에 표시될 제목
$g5_head_title .= " | ".$config['cf_title'];
}
맨위 이부분 수정
$is_index = (isset($is_index) && $is_index === true) || ($_SERVER['SCRIPT_NAME'] === '/index.php');
if (!isset($g5['title']) || $is_index) {
$g5['title'] = $config['cf_title'];
$g5_head_title = $g5['title'];
}
else {
$g5_head_title = $g5['title']; // 상태바에 표시될 제목
$g5_head_title .= " | ".$config['cf_title'];
}
추천
1
1
댓글 2개

감사합니다

감사합니다