我尝试在Wordpress主题中的一个类别下包含多个php文件,文件/目录结构如下所示:
-Theme Folder
--Functions_Folder
---Folder_1
----File1.php
----File2.php
---Folder_2
----File1.php
----File2.php
---Folder_3
----File1.php
----File2.php
我想在我的主题函数中包含所有这些子函数。php和我使用了以下代码:
foreach(glob(get_template_directory() . "/Functions_Folder/*.php") as $file){
require $file;
}
它和*配合得很好。php文件位于父文件夹--Functions\\u文件夹中。
是否有任何函数可以调用所有文件only 在--Functions\\u文件夹中,包括所有子文件夹*。php文件?
非常感谢。