bp_get_activity_content
The rtMedia for WordPress, BuddyPress and bbPress bp get activity content hook.
Description
Parameters (1)
- 0. $comment_string (unknown)
- The comment string.
Usage
- To run the hook, copy the example below.
- $comment_string = apply_filters( 'bp_get_activity_content', $comment_string );
- if ( !empty( $comment_string ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_get_activity_content callback
- function filter_bp_get_activity_content( $comment_string ) {
- // make filter magic happen here...
- return $comment_string;
- };
- // add the filter
- add_filter( 'bp_get_activity_content', 'filter_bp_get_activity_content', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_get_activity_content', 'filter_bp_get_activity_content', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /app/main/controllers/template/rtmedia-functions.php
- $html .= '<div class="rtmedia-comment-content">' . wpautop( make_clickable( apply_filters( 'bp_get_activity_content', $comment_string ) ) ) . '</div>';