bp_get_activity_per_page
Filters the activity posts per page value.
Description
Parameters (1)
- 0. $int_activities_template_pag_num (int) =>
(int) $activities_template->pag_num
- How many post should be displayed for pagination.
Usage
- To run the hook, copy the example below.
- $int_activities_template_pag_num = apply_filters( 'bp_get_activity_per_page', $int_activities_template_pag_num );
- if ( !empty( $int_activities_template_pag_num ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_get_activity_per_page callback
- function filter_bp_get_activity_per_page( $int_activities_template_pag_num ) {
- // make filter magic happen here...
- return $int_activities_template_pag_num;
- };
- // add the filter
- add_filter( 'bp_get_activity_per_page', 'filter_bp_get_activity_per_page', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_get_activity_per_page', 'filter_bp_get_activity_per_page', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-activity/bp-activity-template.php
- return apply_filters( 'bp_get_activity_per_page', (int) $activities_template->pag_num );