bp_group_request_comment
Filters the membership request comment left by user.
Description
Parameters (1)
- 0. $strip_tags (string) =>
strip_tags( stripslashes( $requests_template->request->comments ) )
- Membership request comment left by user.
Usage
- To run the hook, copy the example below.
- $strip_tags = apply_filters( 'bp_group_request_comment', $strip_tags );
- if ( !empty( $strip_tags ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_group_request_comment callback
- function filter_bp_group_request_comment( $strip_tags ) {
- // make filter magic happen here...
- return $strip_tags;
- };
- // add the filter
- add_filter( 'bp_group_request_comment', 'filter_bp_group_request_comment', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_group_request_comment', 'filter_bp_group_request_comment', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-groups/bp-groups-template.php
- echo apply_filters( 'bp_group_request_comment', strip_tags( stripslashes( $requests_template->request->comments ) ) );