모바일 게시판중 특정게시판 상단 다르게 노출할려면

모바일 게시판중 특정게시판 상단 다르게 노출할려면

QA

모바일 게시판중 특정게시판 상단 다르게 노출할려면

답변 1

본문

모바일 게시판중 특정게시판 '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

이렇게 해보세요.


<?php
if (!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']);
}
?>
답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 17
© SIRSOFT
현재 페이지 제일 처음으로