bp_get_group_create_button()
Get the Create a Group button.
Description Description
Return Return
(false|string)
Source Source
File: bp-groups/bp-groups-template.php
function bp_get_group_create_button() { if ( ! is_user_logged_in() ) { return false; } if ( ! bp_user_can_create_groups() ) { return false; } $button_args = array( 'id' => 'create_group', 'component' => 'groups', 'link_text' => __( 'Create a Group', 'buddypress' ), 'link_class' => 'group-create no-ajax', 'link_href' => trailingslashit( bp_get_groups_directory_permalink() . 'create' ), 'wrapper' => false, 'block_self' => false, ); /** * Filters the HTML button for creating a group. * * @since 2.0.0 * * @param string $button HTML button for creating a group. */ return bp_get_button( apply_filters( 'bp_get_group_create_button', $button_args ) ); }
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |