如何在buddypress活动源中包含自定义帖子类型注释

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?

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);