以前在“ 更换主题-七彩之家BLUE2.0以及后续的修改 ”中的functions.php添加了很多内容,稍微有点差池就导致WordPress无法打开。
幸好WordPress很人性化的支持无限扩展-include all php script功能,可以实现更自由的添加自定义功能,避免了直接修改模板函数functions.php导致的各类风险~
步骤1.实现方法很简单,在functions.php中添加代码:
//增加function模板应用include all PHP script 以后不用再次添加内容
define('theme_apps', TEMPLATEPATH.'/apps');//在此定义存放php文件的文件夹名称
IncludeAll( theme_apps );
function IncludeAll($dir){
$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;
}
}//end foreach
}//end if
}
// -- 2013-8-8 1:39 END --------------------------------------
2.之后在主题目录内新建apps文件夹,用来存放添加自定义功能的php文件。apps目录内的php文件可以随便命名,这样也就方便管理不用再修改模板函数文件。只是需要在文件头和尾各添加<?php和 ?>标签。
参考:http://www.oome.org/wordpress-theme-function-file.html