2
我想在我的Wordpress網站的header.php
包括一些.php
文件。WordPress的 - Include_once的根文件
這裏是我的架構:
Root/
|_ includes
|_ db_connect.php
|_ functions.php
|_ var_list.php
|_ wp-includes
|_ wp-content
|_ themes
|_ NameTheme
|_ header.php
|_ wp-admin
我需要包括在這行我header.php
include_once 'includes/db_connect.php';
include_once 'includes/functions.php';
include_once 'includes/var_list.php';
sec_session_start(); // function to start session, placed in functions.php
我tryed什麼:
- 隨着
$_SERVER['DOCUMENT_ROOT']
- 隨着
dirname(_FILE_)
- 隨着
ABSPATH
//這是定義在我wp-config.php
- 隨着
home_url
- 隨着
site_url
所有返回空白頁(500實習生al error) 可以幫到我嗎? 謝謝。
是啊..容易enuff ..這應該工作:) – Gogol