bp_get_template_locations (数组美元的模板=数组())
获取检查模板的可能子目录。
描述
参数
- 美元的模板
-
(数组)(可选)我们正在寻找的模板。
默认值:数组()
返回
(数组)可以查看的子文件夹。
源
文件:bp-core / bp-core-template-loader.php
函数bp_get_template_locations($templates = array()) {$locations = array('buddypress', 'community', '');/** *过滤可能的子目录来检查模板。* * @since BuddyPress 1.7.0 * * @param array $locations查看的子文件夹数组。* @param array $templates我们正在寻找的模板数组。*/返回apply_filters('bp_get_template_locations', $locations, $templates);}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.7.0 | 介绍了。 |