Created
July 22, 2010 10:18
-
-
Save thefuxia/485804 to your computer and use it in GitHub Desktop.
Print full text in feed description
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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