내용관리를 페이지안으로 불러올수 있나요?
본문
제목 그대로 내용관리 co_id="" 안에 있는 내용을 일반페이지 중간에 불러올수 있나요?
아이프레임쓰지 않구요..
<?=get_text($config[cf_stipulation])?> 옛날에는 이렇게 해서 불러오긴 했는데 그누5에서는 어떻게 해야하는지 궁금합니다.
답변 1
extend 폴더에 화일을 만듭니다
<?
function get_co_content(co_id='company'){
$content_table = G5_TABLE_PREFIX.'content';
$row=sql_fetch("select co_content from $content_table where co_id='$co_id'");
return $row[co_content];
}
?>
사용
<?=get_co_content('company');?>
<?=get_co_content('privacy');?>
답변을 작성하시기 전에 로그인 해주세요.