Reputation: 43
We have a custom post type "Videos" with comments enabled. I am trying to make the comments for "Videos" show up in the activity feed for Buddypress. Does anyone know how to do this?
Upvotes: 0
Views: 741
Reputation: 1956
Try the follow:
function record_video_activity( $post_types ) {
$post_types[] = 'video'; // Add your custom post type name to the array.
return $post_types;
}
add_filter('bp_blogs_record_post_post_types', 'record_video_activity', 1, 1);
add_filter( 'bp_blogs_record_comment_post_types', 'record_video_activity', 10, 1);
Upvotes: 1