• My RSS shows the full post instead of the summary for all posts in my RSS feed, even though in the settings it is set to summary. How do I fix this? I tried saving the settings again and it didn’t get fixed. I tried using a plugin to customize my RSS feed and it didn’t work either.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • it’s showing the summary but it’s the summary itself is too long, you can make it short by adding this code in your functions.php file

    function custom_excerpt_length( $length ) {
    	return 20;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

    the 20 is the number of words that will be returned

Viewing 1 replies (of 1 total)

The topic ‘RSS Feed Summary not working’ is closed to new replies.