bp_nouveau_get_activity_filters_array( string $output = '', array $filters = array(), string $context = '' )
Make sure bp_get_activity_show_filters() will return the filters and the context instead of the output.
Description Description
Parameters Parameters
- $output
-
(Optional) HTML output
Default value: ''
- $filters
-
(Optional)
Default value: array()
- $context
-
(Optional)
Default value: ''
Return Return
(array)
Source Source
File: bp-templates/bp-nouveau/includes/activity/functions.php
function bp_nouveau_get_activity_filters_array( $output = '', $filters = array(), $context = '' ) {
return array(
'filters' => $filters,
'context' => $context,
);
}
Changelog Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |