모바일 게시판중 특정게시판 'notice','qna'등만 게시판 상단파일을 다르게 나오게 하고 싶은데 잘 안됩니다.
bbs폴더
board_head.php 내용을 수정하면 될듯한데..맞나요?..
도와주세요.꾸벅
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// 게시판 관리의 상단 내용
if (G5_IS_MOBILE) {
// 모바일의 경우 설정을 따르지 않는다.
include_once('./_head.php');
echo stripslashes($board['bo_mobile_content_head']);
} else {
@include ($board['bo_include_head']);
echo stripslashes($board['bo_content_head']);
}
?>
|
답변 1개 / 댓글 1개
채택된 답변
+20 포인트
9년 전
이렇게 해보세요.
Copy
<?phpif (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가// 게시판 관리의 상단 내용if (G5_IS_MOBILE) { // 모바일의 경우 설정을 따르지 않는다. if ($bo_table == 'notice' || $bo_table == 'qna') { include_once(다른파일); } else { include_once(G5_BBS_PATH.'/_head.php'); } echo stripslashes($board['bo_mobile_content_head']);} else { @include ($board['bo_include_head']); echo stripslashes($board['bo_content_head']);}?>
답변에 대한 댓글 1개
답변을 작성하려면 로그인이 필요합니다.