bbp_get_reply_content
Like this:
Like Loading...
Hook Type: filter
See hook in action
Displaying hooks found in version: bbpress.2.6.9
apply_filters('bbp_get_reply_content') is found 2 times:
- /includes/admin/classes/class-bbp-topic-replies-list-table.php line 154
$actions = array_reverse( $actions );
}
// Filter the reply content
$reply_content = apply_filters( 'bbp_get_reply_content', $item->post_content, $item->ID );
$reply_actions = $this->row_actions( $actions );
// Return content & actions
return $reply_content . $reply_actions;
}
Like this:
Like Loading...
- /includes/replies/template.php line 587
$content = get_post_field( 'post_content', $reply_id );
// Filter & return
return apply_filters( 'bbp_get_reply_content', $content, $reply_id );
}
/**
* Output the excerpt of the reply
*
* @since 2.0.0 bbPress (r2751)
Like this:
Like Loading...
See this hook used in plugins: