bp_group_creation_stage_title()
Description Description
Source Source
File: bp-groups/bp-groups-template.php
function bp_group_creation_stage_title() {
$bp = buddypress();
/**
* Filters the group creation stage title.
*
* @since 1.1.0
*
* @param string $value HTML markup for the group creation stage title.
*/
echo apply_filters( 'bp_group_creation_stage_title', '<span>— ' . $bp->groups->group_creation_steps[bp_get_groups_current_create_step()]['name'] . '</span>' );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |