bp_nouveau_get_hooked_group_meta()

Catch the content hooked to the ‘bp_group_header_meta’ action

Description

Return

(string|bool) HTML Output if hooked. False otherwise.

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 BuddyPress 1.2.0
	 */
	do_action( 'bp_group_header_meta' );

	$output = ob_get_clean();

	if ( ! empty( $output ) ) {
		return $output;
	}

	return false;
}

Changelog

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.