Set Custom Excerpt Length
function custom_excerpt_length( $length ) {
return 20; // Return 20 words
}
add_filter('excerpt_length', 'custom_excerpt_length');
function custom_excerpt_length( $length ) {
return 20; // Return 20 words
}
add_filter('excerpt_length', 'custom_excerpt_length');