Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to limit the post words of site wide activity to 200?


John James Jacoby
Keymaster

@johnjamesjacoby

Try…

function bp_custom_activity_content_length( $content ) {
return bp_create_excerpt( $content, 200 );
}
add_filter( 'bp_get_activity_content', 'bp_custom_activity_content_length' );

Skip to toolbar