Skip to content

Instantly share code, notes, and snippets.

@thefuxia
Created July 22, 2010 10:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thefuxia/485804 to your computer and use it in GitHub Desktop.
Save thefuxia/485804 to your computer and use it in GitHub Desktop.
Print full text in feed description
<?php
add_filter('the_excerpt_rss', 'my_fulltext_desc');
function my_fulltext_desc($excerpt)
{
if ( ! is_feed() )
{
return $excerpt;
}
return apply_filters('the_content', get_the_content() );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment