nelson-d
9/17/2018 - 1:35 AM

Modify the length of post excerpts

Modify the length of post excerpts

//* Modify the length of post excerpts
add_filter( 'excerpt_length', 'sp_excerpt_length' );
function sp_excerpt_length( $length ) {
	return 50; // pull first 50 words
}