bp_nouveau_blogs_catch_button_args( $button = array() )
Catch the arguments for buttons
Parameters Parameters
- $buttons
-
(array) (Required) The arguments of the button that BuddyPress is about to create.
Return Return
(array) An empty array to stop the button creation process.
Source Source
File: bp-templates/bp-nouveau/includes/blogs/functions.php
function bp_nouveau_blogs_catch_button_args( $button = array() ) { // Globalize the arguments so that we can use it in bp_nouveau_get_blogs_buttons(). bp_nouveau()->blogs->button_args = $button; // return an empty array to stop the button creation process return array(); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |