bp_nouveau_members_catch_button_args( $button = array() )

Catch the arguments for buttons


Description Description


Parameters Parameters

$buttons

(Required) The arguments of the button that BuddyPress is about to create.


Top ↑

Return Return

(array) An empty array to stop the button creation process.


Top ↑

Source Source

File: bp-templates/bp-nouveau/includes/members/functions.php

function bp_nouveau_members_catch_button_args( $button = array() ) {
	/*
	 * Globalize the arguments so that we can use it
	 * in bp_nouveau_get_member_header_buttons().
	 */
	bp_nouveau()->members->button_args = $button;

	// return an empty array to stop the button creation process
	return array();
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.