모바일 특정 게시판만 head,tail을 삭제할수 있을까요?
본문
pc는 게시판 설정에서 head,tail을 삭제하고 저장하면 없어져 버리던데
모바일은 특정 게시판만 head,tail을 없애버리고 싶습니다.
bbs/board_head.php, bbs/board_tail.php 에서 하는 것 같은데
초보인지라 자문을 구합니다.
답변 3
게시판 설정에서 안되면 head.php 와 tail.php 파일에서 틱정 게시판 일 때 따로 처리 하면 될 것 같습니다
암튼 방법은 여러가지가 있을것 같습니다
자체 해결했습니다.
board_head.php 일 경우
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// 게시판 관리의 상단 내용
if ($bo_table != "newmodel" && G5_IS_MOBILE) {
// 모바일의 경우 설정을 따르지 않는다.
include_once(G5_BBS_PATH.'/_head.php');
if($is_bo_content_head) {
echo stripslashes($board['bo_mobile_content_head']);
}
} else {
if(is_include_path_check($board['bo_include_head'])) { //파일경로 체크
@include ($board['bo_include_head']);
} else { //파일경로가 올바르지 않으면 기본파일을 가져옴
include_once(G5_BBS_PATH.'/_head.php');
}
echo stripslashes($board['bo_content_head']);
}
?>
board_tail.php 경우
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// 게시판 관리의 하단 파일 경로
if ($bo_table != "newmodel" && G5_IS_MOBILE) {
if($is_bo_content_tail) {
echo stripslashes($board['bo_mobile_content_tail']);
// 모바일의 경우 설정을 따르지 않는다.
}
include_once(G5_BBS_PATH.'/_tail.php');
} else {
echo stripslashes($board['bo_content_tail']);
if(is_include_path_check($board['bo_include_tail'])) { //파일경로 체크
@include ($board['bo_include_tail']);
} else { //파일경로가 올바르지 않으면 기본파일을 가져옴
include_once(G5_BBS_PATH.'/_tail.php');
}
}
?>
으로 처리했습니다.
!-->!-->
답변을 작성하시기 전에 로그인 해주세요.