krista-m
4/22/2018 - 6:58 PM

Post Excerpt Length

Customize the post excerpt length

//* Modify the length of post excerpts
add_filter( 'excerpt_length', 'kr_starter_length' );
function kr_starter_length( $length ) {

	return 50; // pull first 50 words

}