加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
functions.php 851 Bytes
一键复制 编辑 原始数据 按行查看 历史
Shawn 提交于 2018-11-18 14:49 . new version
<?php
// 任何添加于主题目录functions文件夹内的php文件都被调用到这里
define('functions', TEMPLATEPATH.'/functions');
IncludeAll( functions );
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;
}
}
}
}
// codestar后台框架
require_once dirname( __FILE__ ) .'/cs-framework/cs-framework.php';
/* 检查更新
require_once(TEMPLATEPATH . '/theme-update-checker.php');
$memory_update_checker = new ThemeUpdateChecker(
'Memory', //主题名字
'https://shawnzeng.com/wp-themes/memory-info.json' //info.json 的访问地址
);*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化