Adding /feed/rss/a URL at the end gives a snippet of the message, for example:
http://mediasafari.com/news/marketing-careers-announces-two-new-courses/feed/rss/
If you change the excerpt to show the full article, this should work:
<?php
function rssFullText($content) {
global $post;
$content = $post->post_content;
return $content;
}
add_filter('the_excerpt_rss', 'rssFullText');
?>
dciso source
share