It’s Time to Raise Your RSS Feed From the Dead

Contrary to popular belief, feeds are still roaming the face of the internet… or at least the underworld of it. Content syndication may be being consumed by applications and websites more than people using a feed reader… but the opportunity to ensure your content is distributed and looks great across devices is still a plus for content strategies.

What Is RSS? What’s A Feed?

I was shocked when I viewed our old Feedburner account to see that still, 9,000+ users are viewing our content via our feed daily… wow! And when I started to look at other sites, they had 50,000+ readers on some of the blogs. Here are a few things we’ve done to raise our RSS feed from the dead using WordPress.

// Add featured images to RSS feed
function add_featured_image_to_rss($content) {
    global $post;
    if (has_post_thumbnail($post->ID)) {
        $image = get_the_post_thumbnail_url($post->ID, 'full');
        $content = '<p><img src="' . esc_url($image) . '" alt="' . get_the_title() . '" /></p>' . $content;
    }
    return $content;
}
add_filter('the_content_feed', 'add_featured_image_to_rss');
<link rel="alternate" type="application/rss+xml" title="Martech Zone Feed" href="http://feed.martech.zone" />

Kill Feedburner and bring FeedPress to Life:

We ditched Feedburner and implemented FeedPress on our site. It’s a full-featured feed analytics platform with additional features like the ability to CNAME your feed, so you’re not dependent on that old Feedburner URL. So, I have the subdomain https://feed.martech.zone set for our feed!

Here’s how to convert your site to FeedPress:

FeedPress has a ton of other options to customize and optimize your feed:

Sign Up For FeedPress

Exit mobile version