Skip to main content
Login Join
Snippet · PHP

Custom Excerpt Length

Shared by Darshit Rajyaguru · May 22, 2026 · @excerpt_length

1 copy
50 views
2 upvotes
Back to Snippets

Sets custom excerpt word count.

function dr_custom_excerpt_length( $length ) {
    return 20;
}
add_filter( 'excerpt_length', 'dr_custom_excerpt_length' );
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments