Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #814576

    Hello.
    How can I shorten search results to 20 words on search page?

    Thank you.

    Best regards
    Maciej

    #814890

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.