bp_is_first_group_creation_step (字符串美元的步骤='')
用户是否正在查看组创建过程的第一步
描述
参数
- 美元的步骤
-
(字符串)(可选)步骤比较。
默认值:“
返回
(保龄球)是则为True,否则为False
源
文件:bp-groups / bp-groups-template.php
function bp_is_first_group_creation_step($step = "){//如果没有通过步骤,使用当前步骤。If (empty($step)) {$step = bp_get_groups_current_create_step();} //获取第一步。英国石油美元= buddypress ();$bp = array_keys($bp->groups->group_creation_steps);$f_step = array_shift($steps);//比较第一步和步骤。$retval = ($f_step === $step);/** *过滤用户是否正在查看组创建过程中的第一步。* * @since BuddyPress 2.4.0 * * @param bool $retval是否我们正在查看第一步。 * @param array $steps Array of steps from the group creation process. * @param string $step Step to compare. */ return (bool) apply_filters( 'bp_is_first_group_creation_step', $retval, $steps, $step ); }
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.1.0 | 介绍了。 |