채택완료
index.php에서 PC버전과 Mobile버전으로 분기하기!! 도와주세요!!
index.php에서 PC버전과 Mobile버전으로 분기하고 싶은데 어떻게 해야 하나요?
PC 헤더 :
<?php
include_once("./header_mychild.php");
?>
PC 콘텐츠 :
<div class="tt_bg">
<div class="hcontainer tb_thum">
<p class="lxit ml30px">
<b>~~</b>가 <b>~~~~~~~</b><br>
<b>~~~~~~~</b>~~~~~~~~
</p>
</div>
<div class="clear"></div>
</div>
Mobile 헤더 :
<?php
include_once("./m_header_mychild.php");
?>
Mobile 콘텐츠 :
<div class="tt_bg">
<div class="hcontainer tb_thum">
<p class="lxit ml30px">
<b>~~</b>가 <b>~~~~~~~</b><br>
<b>~~~~~~~</b>~~~~~~~~
</p>
</div>
<div class="clear"></div>
</div>
답변 1개
채택된 답변
+20 포인트
2019-07-24 (수) 12:56:27
Copy
if (G5_IS_MOBILE) {
include_once(G5_THEME_MOBILE_PATH.'/index.php');
return;
}
그누 원 소스 index에 보면 이렇게 나눠져 있습니다.
답변을 작성하려면 로그인이 필요합니다.