bp_use_theme_compat_with_current_theme ()
对于这个主题,我们应该使用theme compat吗?
描述
如果当前主题还没有检测到对主题compat的需求,我们使用bp_detect_theme_compat_with_current_theme ().
返回
(保龄球)如果当前主题需要主题兼容性,则为True。
源
文件:bp-core / bp-core-theme-compatibility.php
函数bp_use_theme_compat_with_current_theme() {if (!Isset (buddypress()->theme_compat->use_with_current_theme)) {bp_detect_theme_compat_with_current_theme();} /** *过滤活动主题是否使用主题compat。* * @since BuddyPress 1.9.0 * * @param bool $use_with_current_theme如果当前的主题需要主题兼容性,则为True。*/返回apply_filters('bp_use_theme_compat_with_current_theme', buddypress()->theme_compat->use_with_current_theme);}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.9.0 | 介绍了。 |