bp_group_creation_tabs()
Output HTML for group creation steps.
Description
Return
(bool)
Source
File: bp-groups/bp-groups-template.php
5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 | function bp_group_creation_tabs() { $bp = buddypress(); if ( ! is_array ( $bp ->groups->group_creation_steps ) ) { return false; } if ( !bp_get_groups_current_create_step() ) { $keys = array_keys ( $bp ->groups->group_creation_steps ); $bp ->groups->current_create_step = array_shift ( $keys ); } $counter = 1; foreach ( ( array ) $bp ->groups->group_creation_steps as $slug => $step ) { $is_enabled = bp_are_previous_group_creation_steps_complete( $slug ); ?> <li<?php if ( bp_get_groups_current_create_step() == $slug ) : ?> class = "current" <?php endif ; ?>><?php if ( $is_enabled ) : ?><a href= "<?php bp_groups_directory_permalink(); ?>create/step/<?php echo $slug ?>/" ><?php else : ?><span><?php endif ; ?><?php echo $counter ?>. <?php echo $step [ 'name' ] ?><?php if ( $is_enabled ) : ?></a><?php else : ?></span><?php endif ?></li><?php $counter ++; } unset( $is_enabled ); /** * Fires at the end of the creation of the group tabs. * * @since BuddyPress 1.0.0 */ do_action( 'groups_creation_tabs' ); } |
Changelog
Version | Description |
---|---|
BuddyPress 1.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.