bp_nouveau_get_group_create_steps_classes()
Returns the groups create steps customizer option choice class.
Description
Return
(string) CSS classes
Source
File: bp-templates/bp-nouveau/includes/template-tags.php
function bp_nouveau_get_group_create_steps_classes() {
$classes = array( 'bp-navs', 'group-create-links', 'no-ajax' );
$class = array_map( 'sanitize_html_class', $classes );
/**
* Filters the final results for BuddyPress Nouveau group creation step classes.
*
* This filter will return a single string of concatenated classes to be used.
*
* @since BuddyPress 3.0.0
*
* @param string $value Concatenated classes.
* @param array $classes Array of classes that were concatenated.
*/
return apply_filters( 'bp_nouveau_get_group_create_steps_classes', join( ' ', $class ), $classes );
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 3.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.