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