Hey guys how do I limit the word count through our Feed? For example, how do I set our RSS feed to only show maybe 150 words? In addition, how can I enable the HTML?
If you're using Wordpress then do the following: Go to Admin Panel --> Settings --> Reading Setting the feed reading to "Summary"
Put this in your functions.php file: function limit_rss_words($content) { $word_limit = "10"; $content = explode(' ', $content); return implode(' ', array_slice($content, 0, $word_limit)); } add_filter('the_excerpt_rss', 'limit_rss_words'); add_filter('the_content_rss', 'limit_rss_words'); If you don't have a functions.php file then create it and ad the code above between <?php and ?>