Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created September 20, 2012 03:52
Show Gist options
  • Save claudiosanches/3753876 to your computer and use it in GitHub Desktop.
Save claudiosanches/3753876 to your computer and use it in GitHub Desktop.
Force Excerpt in Feeds
<?php
/**
* Force Excerpt in Feeds
*
* @param string $content Content of post
*
* @return string Excerpt of post
*/
function cs_feed_force_excerpt( $content ) {
return get_the_excerpt();
}
add_filter( 'the_content_feed', 'cs_feed_force_excerpt' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment