oldbag66
Member
Posted 2 years ago #
Ive got the excerpt length working in my function.php file, however i was wondering if its possible to make the excerpt length stop at the end of the first sentence, in other words stop at the first full stop in the post rather than after..say 20 words.
Jorge A. Gonzalez
Member
Posted 1 year ago #
There should be an option for this in the next release.
function custom_excerpt_length( $length ) {
return 40;
}
add_filter( 'excerpt_length', 'custom_excerpt_length' );
Try this code. 40 will be change according to your choice
oldbag66
Member
Posted 1 year ago #