우측 메뉴 > 그누보드5 팁자료실

그누보드5 팁자료실

우측 메뉴 정보

우측 메뉴

본문


<nav >
    <ul>
        <?php
        $sql2 = " select * from {$g5['board_table']} where bo_show_menu = 1 and bo_device <> 'pc' ";
        if ($gr_id) $sql2 .= " and gr_id = '$gr_id' ";
        $sql2 .= " order by bo_order ";
        $result2 = sql_query($sql2);
        for ($bi=0; $row2=sql_fetch_array($result2); $bi++) { // bi 는 board index
            $bo_subject = $row2['bo_subject'];
            if (G5_IS_MOBILE && $row2['bo_mobile_subject']) {
                $bo_subject = $row2['bo_mobile_subject'];
            }
        ?>
        <li><a href="<?php echo G5_BBS_URL ?>/board.php?bo_table=<?php echo $row2['bo_table'] ?>"><?php echo $bo_subject; ?></a></li>
        <?php } ?>
    </ul>
</nav>


우측 각 그룹페이지마다 해당 그룹안의 게시판 메뉴명만 표기됩니다.
추천
3
  • 복사

댓글 5개

© SIRSOFT
현재 페이지 제일 처음으로