bp_get_activities_no_activity
Filters the text used when there is no activity to display.
Description
Parameters (1)
- 0. $bp_activity_no_activity (string)
- Text to display for no activity.
Usage
- To run the hook, copy the example below.
- $bp_activity_no_activity = apply_filters( 'bp_get_activities_no_activity', $bp_activity_no_activity );
- if ( !empty( $bp_activity_no_activity ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_get_activities_no_activity callback
- function filter_bp_get_activities_no_activity( $bp_activity_no_activity ) {
- // make filter magic happen here...
- return $bp_activity_no_activity;
- };
- // add the filter
- add_filter( 'bp_get_activities_no_activity', 'filter_bp_get_activities_no_activity', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_get_activities_no_activity', 'filter_bp_get_activities_no_activity', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-activity/bp-activity-template.php
- return apply_filters( 'bp_get_activities_no_activity', $bp_activity_no_activity );