bp_nouveau_get_hooked_group_meta()
Catch the content hooked to the ‘bp_group_header_meta’ action
Description Description
Return Return
(string|bool) HTML Output if hooked. False otherwise.
Source Source
File: bp-templates/bp-nouveau/includes/groups/functions.php
function bp_nouveau_get_hooked_group_meta() {
ob_start();
/**
* Fires after inside the group header item meta section.
*
* @since 1.2.0
*/
do_action( 'bp_group_header_meta' );
$output = ob_get_clean();
if ( ! empty( $output ) ) {
return $output;
}
return false;
}
Changelog Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |