채택완료

G5에서 상단내용 출력부분

2016-12-06 (화) 17:59:38 3,740

G5에서요 게시판 관리자에서 입력한 [상단내용] 부분을 출력하는 소스는

어디에 들어 있나요?

head.php 에서도 찾을 수가 없네요.

도움 부탁 드립니다. 

|

답변 1개

채택된 답변
+20 포인트

bbs/board_head.php 파일에 있습니다. $board['bo_content_head']

// 게시판 관리의 상단 내용

if (G5_IS_MOBILE) {

    // 모바일의 경우 설정을 따르지 않는다.

    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']);

}

답변을 작성하려면 로그인이 필요합니다.