Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active November 11, 2017 22:44
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 braddalton/22e1f467561c9ce0c5ee to your computer and use it in GitHub Desktop.
Save braddalton/22e1f467561c9ce0c5ee to your computer and use it in GitHub Desktop.
Add Banner Image After RSS Feed Excerpt in WordPress http://wpsites.net/wordpress-tips/add-banner-image-after-rss-feed-excerpt/
//* Add Advertising Banner After RSS Feed Excerpt
add_filter('the_excerpt_rss', 'wpsites_feed_advert_wpsites', 25 );
add_filter('the_content_feed', 'wpsites_feed_advert_wpsites', 25 );
function wpsites_feed_advert_wpsites($content) {
$banner = 'Your Image HTML';
$content = $content. $banner;
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment