如何在buddypress活动提要中包含自定义帖子类型评论


How to include custom post type comments in buddypress activity feed

我们有一个自定义的帖子类型" video ",并启用了评论。我试图使评论"视频"显示在Buddypress的活动源。有人知道怎么做吗?

尝试如下:

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