So I added this `function my_get_posts( $query ) {
if ( is_home() && false == $query->query_vars['suppress_filters'] )
$query->set( 'post_type', array( 'post', 'topic', 'quote', 'attachment' ) );
return $query;
}`
to my functions.php and when displaying the blog it allows bbpress posts to be displayed as a blog post. It works fine, but I can't add replies to the comments any idea how to accomplish this?