Tagged: search results, shorten
Hello.
How can I shorten search results to 20 words on search page?
Thank you.
Best regards
Maciej
Hey Maciej,
Try adding this code at the bottom of your functions.php file:
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Hope this helps :)
Best regards,
Nikko