Content Marketing

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.

  • Ensure you enable post thumbnails on your site and add the necessary tagging to ensure your articles have a featured image. This is possible with WordPress by using the SB RSS Feed Plus plugin for WordPress, or you can include a function in your theme or child theme’s functions.php file to add your featured images to the output of each post in your feed:
// 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');
  • Implement FeedPress so that you can track and measure your feed consumption and click-through rate, can customize your feed URL, and push your feed to your social channels.
  • Add a copyright blurb or call to action at the base of your feed with a WordPress SEO plugin. We catch people stealing and republishing our feed all the time, and they’re dumb enough to keep our copyright on it when they publish it.
  • Add your feed address to your menu and put it somewhere on your site using the international symbol for RSS feeds.
  • Add the necessary header tags to your theme between the head tags so applications and browsers find your feed address; here’s the code for our feed address:
<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:

  • Social Media Publishing – FeedPress also has an incredible social media integration where you can automatically publish all newly published content across your social media accounts.
  • Feed Tracking – advanced and accurate reporting on how many subscribers you have, where, and how those subscribers consume your feed.
  • Email Newsletter – Free for 1000 subscribers or fewer. Enable their newsletter feature and grab their signup form code to include it on your site.
  • Push Notifications – Active push notifications via PubSubHubbub to notify feed subscribers of your new content.
  • Content Customization – Add a title and logo, truncate your content, modify the read more text, adjust the number of articles.
  • Secure Certificate – Enforcement of SSL to maximize delivery.
  • Google Analytics Integration – Automated UTM tracking when feed readers click through to your site.
  • Alternate Formats – Your feed can be consumed in XML, JSON, or HTML.
  • WordPress Plugin – If you’re on WordPress, they offer a plugin to make things even easier!

Sign Up For FeedPress

Douglas Karr

Douglas Karr is CMO of OpenINSIGHTS and the founder of the Martech Zone. Douglas has helped dozens of successful MarTech startups, has assisted in the due diligence of over $5 bil in Martech acquisitions and investments, and continues to assist companies in implementing and automating their sales and marketing strategies. Douglas is an internationally recognized digital transformation and MarTech expert and speaker. Douglas is also a published author of a Dummie's guide and a business leadership book.

Related Articles

Back to top button
Close

Adblock Detected

Martech Zone is able to provide you this content at no cost because we monetize our site through ad revenue, affiliate links, and sponsorships. We would appreciate if you would remove your ad blocker as you view our site.