Archived topic
Excerpt Word Count
5 replies · Started by Christopher on July 6, 2020
Viewing posts 1–6 of 6
Is there any way that I can increase the word count for the excerpt for the featured post? I would like to say a little bit more before the read more button.
Hi there,
Give this a shot:
add_filter( 'excerpt_length', function( $length ) {
if ( in_array( 'featured-column', get_post_class() ) ) {
return 100;
}
return $excerpt;
}, 100 );
Let me know :)
Where do I put that?
That code is PHP.
This doc explains:
Ok thank you!
You're welcome
This archived topic is closed to new replies.