25% off ProSNIPC25OFF

Custom Excerpt Length

Sets the default WordPress excerpt word count to 25 words via the excerpt_length filter.

PHPby SnipCraft
php
<?php
add_filter( 'excerpt_length', 'scseed_custom_excerpt_length', 999 );
function scseed_custom_excerpt_length( $length ) {
    return 25;
}
#content#excerpts#frontend#reading#theme