By default the WordPress RSS summary excerpt length is 55 words.
The steps below detail how to change the summary length to any other number.
- Open your themes functions.php file and look for a filter starting with
-
add_filter( 'excerpt_length',
- If you find this, take note of the next part of the filter, for example if you found
-
add_filter( 'excerpt_length', 'mts_excerpt_length', 20 );
- Take note of mts_excerpt_length
- Now look for the function called mts_excerpt_length and edit the number inside to change the except length.
- For example, here you would change 50
-
function mts_excerpt_length( $length ) { return 50; }
- If you did not find an existing filter add the following to your functions.php below the <?php
-
function custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
- Save the changes.