在buddypress Activity页面过滤显示一些动态的代码

add_filter( 'bp_after_has_activities_parse_args', function ( $args ) {
        
        $args['action'] =
        array(
                'activity_update',
                'activity_comment',
                'new_blog_post',
                'new_blog_comment',
                'bbp_topic_create',
                'bbp_reply_create',
                //'friendship_created'
                //'created_group'
                //'joined_group'
        );

        return $args;
} );

在functions.php中输入上面的代码。

发表回复