目前很多WordPress 主題都不會在functions.php 裡面寫入過多的自訂函數程式碼,一來這裡是惡意程式碼的重災區,二來全部自訂函數都往這裡面塞顯得很亂,所以一般我們都把需要自訂的一些功能分開單獨寫一個php 文件,然後在functions.php 裡面引用,而如果php 文件多了, 又必須要一個個去引用,看起來很麻煩,所以就有了下面的這個自訂函數,可以一次自動引用某個資料夾下的所有php 檔案。
今天就要跟大家介紹兩個函數,他們的功能類似,一個是include_once
的集體引用,另一個是require_once
的集體引用。
1、require_once
define('inlo_func', TEMPLATEPATH.'/inc'); // 定义集体 php 所在的文件夹 inc function inlo_requireAll( $dir ){ // require_once 集体引用 php foreach( glob( "{$dir}/*.php" ) as $filename ) require_once $filename; } inlo_requireAll( inlo_func ); // 执行函数
#2、include_once
define('inlo_func', TEMPLATEPATH.'/inc'); // 定义集体 php 所在的文件夹 inc function inlo_includeAll( $dir ){ // include_once 集体引用 php $dir = realpath( $dir ); if($dir){ $files = scandir( $dir ); sort( $files ); foreach( $files as $file ){ if( $file == '.' || $file == '..' ){ continue; }elseif( preg_match('/.php$/i', $file) ){ include_once $dir.'/'.$file; } } } } inlo_includeAll( inlo_func ); // 执行函数
以上程式碼二選一加入functions.php 裡面即可,加入後,只要把需要引用的php 檔案放在inc 資料夾裡面效果就如同放在functions.php 裡面一樣了。
以上內容僅供參考!
推薦教學:PHP影片教學
#以上是php檔案如何引用wordpress方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!