워드프레스에서 그누보드 최신글 불러오기 정보
워드프레스에서 그누보드 최신글 불러오기관련링크
본문
댓글 전체
링크대로 하면 되겠네요.
단지 _common.php 파일이 경로를 상대경로로 잘 설정해 주시는 것이 관건이네요.
단지 _common.php 파일이 경로를 상대경로로 잘 설정해 주시는 것이 관건이네요.
root폴더의 _common.php에는
<?php
$g4_path = "./gnuboard4";
include_once("$g4_path/common.php");
?>
기타 폴더의 _common.php에는
<?php
$g4_path = "../gnuboard4";
include_once("$g4_path/common.php");
?>
이렇게 하면 될것 같은데요
<?php
$g4_path = "./gnuboard4";
include_once("$g4_path/common.php");
?>
기타 폴더의 _common.php에는
<?php
$g4_path = "../gnuboard4";
include_once("$g4_path/common.php");
?>
이렇게 하면 될것 같은데요