您应该说明您使用的WP和BP的版本。
这应该会更改录制内容的内容部分。你可以把它放在你的主题函数中。php
add_filter( \'bp_blogs_activity_new_post_content\', \'record_post_activity_content\', 1, 3 );
function record_post_activity_content($activity_content, $post, $post_permalink ){
if( $post->post_type == \'post\' ) {
$activity_content = \'your custom field\';
}
return $activity_content;
}