/** * 获取网站样式 * @param null|string $path 参数为null时返回样式名,否则返回对应的路径 * @return string */ function get_style($path = NULL) { $style = cfg()->get('option', 'site_style'); if ($path === NULL) { return $style; } return get_style_url($style, $path); }
/** * 获取一个用于存储当前主题的文件夹可设置外部信息 * 推荐加载主题静态资源时使用 * @return string */ function get_static_style_url() { static $url = NULL; if ($url === NULL) { $url = hook()->apply("get_static_style_url", get_style_url() . get_style()); } return clean_url($url . "/" . implode("/", func_get_args()) . add_src_version(func_get_args())); }