bp_core_get_root_option (字符串选择美元)
获得一个根选项。
描述
“根选项”是指在整个安装过程中应用的选项,在页面加载期间只获取一次并存储在其中buddypress()——> site_options
以防止将来的查找。看到bp_core_get_root_options ().
参数
- 选择美元
-
(字符串)(必需)选项键的名称。
返回
(混合)值,如果发现。
源
文件:bp-core / bp-core-options.php
函数bp_core_get_root_option($option) {$bp = buddypress();如果(!Isset ($bp->site_options)) {$bp->site_options = bp_core_get_root_options();} $value = ";If (isset($bp->site_options[$option])) {$value = $bp->site_options[$option]; / /设置站点选项美元}返回值;}
更新日志
版本 | 描述 |
---|---|
BuddyPress tripwire | 介绍了。 |