Skip to content

Instantly share code, notes, and snippets.

@jpmarchand
Last active January 25, 2017 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpmarchand/b2397724b4a4b465e359 to your computer and use it in GitHub Desktop.
Save jpmarchand/b2397724b4a4b465e359 to your computer and use it in GitHub Desktop.
Insert custom content in WordPress RSS feed. Source: http://www.wprecipes.com/how-to-insert-ads-on-your-rss-feed
<?php
//* Add custom content in WordPress RSS feed
function customprefix_add_custom_content_rss_feed($content) {
$content = $content.'<hr>Add custom content here!<hr>';
return $content;
}
add_filter('the_excerpt_rss', 'customprefix_add_custom_content_rss_feed');
add_filter('the_content_rss', 'customprefix_add_custom_content_rss_feed');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment