서브메뉴 타이틀에 관해서...
본문
// 이윰메뉴 서브페이지 정보 가져오기
private function eyoom_subpage_info($theme) {
global $g5, $tpl, $it_id, $is_admin, $ca_id, $eyoom, $lang_theme;
$url = $this->compare_host_from_link($_SERVER['REQUEST_URI']);
$info = $this->get_meinfo_link($url);
//$where = " me_theme='{$theme}' and me_type='{$info['me_type']}' and me_pid='{$info['me_pid']}' and me_use='y' ";
$where = " me_theme='{$theme}' and me_type='{$info['me_type']}' and me_pid='{$info['me_pid']}'";
if($it_id) $where .= " and me_link='{$info['me_link']}' ";
$sql = "select * from {$g5['eyoom_menu']} where $where order by me_code ASC";
$data = sql_fetch($sql,false)
theme.class.php 파일에서요
메뉴를 클릭시 첫번째 서브메뉴의 타이틀이 출력이 됩니다.
소스를 보니 메뉴를 설정하고 서브메뉴를 설정하였을경우 메뉴의 me_code가 001로 잡히고 서브메뉴는 001001로 잡힙니다. 메뉴를 클릭했을시 타이틀이 desc로 설정이 되어서 첫번째 서브메뉴가 001001 me_code이기 때문에 출력이 됩니다. asc로 바꾸니 정상 출력이 됩니다.
댓글목록2
자이언트님의 댓글
{subinfo.title} : 이거는 현재 페이지의 서브메뉴명
{subinfo.subtitle} : 서브메뉴의 상위메뉴명
축하합니다. 첫댓글 포인트 90포인트를 획득하였습니다.
크롱크롱님의 댓글의 댓글
위에 조건으로 desc했을경우 이미지 처럼 {subinfo.title}에 me_code가 001001이 먼저출력이 되어서 상단메뉴를 클릭시 {subinfo.title}에 질문/답변이 입력되는것이 아니라 '전체'가 입력이 됩니다.