bp_activity_comment_content
Filters the content of a new comment.
Description
Parameters (1)
- 0. $content (string)
- The content of the current activity comment.
Usage
- To run the hook, copy the example below.
- $content = apply_filters( 'bp_activity_comment_content', $content );
- if ( !empty( $content ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_activity_comment_content callback
- function filter_bp_activity_comment_content( $content ) {
- // make filter magic happen here...
- return $content;
- };
- // add the filter
- add_filter( 'bp_activity_comment_content', 'filter_bp_activity_comment_content', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_activity_comment_content', 'filter_bp_activity_comment_content', 10, 1 );
Defined (2)
The filter is defined in the following location(s).
- /bp-activity/bp-activity-template.php
- return apply_filters( 'bp_activity_comment_content', $content );
- /bp-activity/bp-activity-functions.php
- $comment_content = apply_filters( 'bp_activity_comment_content', $r['content'] );