• Currently the excerpt length is 55 words. In which file can I change this to a different number?

    Cheers,
    Florian

Viewing 1 replies (of 1 total)
  • Inside your theme’s functions.php file, write this:

    function custom_excerpt_length( $length ) {
       return 20; // you can use any integer per your requirement.
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Viewing 1 replies (of 1 total)
  • The topic ‘change excerpt length’ is closed to new replies.