Cotton Rohrscheib

The Cotton Club Blog & Podcast

  • Home
  • Bio
    • Resume
  • Blog
    • Faith & Family
    • Marketing & Tech
    • Farm & Business
    • Entertainment
    • Health & Wellness
    • Urban Farming
    • Weekend Projects
  • Media
    • Newsletter
    • Photo Galleries
    • Instagram Feed
    • Video Archives
    • Podcasts
    • Music Playlists
  • Books
  • Connect
    • Rohrscheib Capital
    • Disclaimer
    • Privacy Policy
You are here: Home / Marketing & Tech / Creating an RSS Feed from Wordpress Tags

Creating an RSS Feed from WordPress Tags

November 14, 2012 by Cotton Rohrscheib Leave a Comment

One of the things that WordPress really does well in my opinion is generate feeds out of the box for posts, and even feeds for post categories are fairly easy to pull together, but today I was needing to put together an RSS feed from post tags. For those of you that might be unfamiliar w/ WordPress taxonomy, you basically have posts that are organized in categories but are refined more specifically using tags (or at least that’s how I teach my clients to leverage wordpress when publishing content, I have seen it done differently though, to each their own).

Since there really isn’t a good plugin to drop in and generate an RSS Feed from post tags, I had to resort to a hack (usually I’m not a fan of doing this). I went in and edited the wp-includes/feed-rss.php file and added the following lines of code just under the php header() call:

$tag = (urldecode($_GET['tag']));
if (!empty($tag)) {
    query_posts("tag=$tag");
}

Here’s what it looks like before:

<?php
/**
 * RSS 0.92 Feed Template for displaying RSS 0.92 Posts feed.
 * @package WordPress
 */

header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
$more = 1;

?>
<?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>

and here’s what it looks like afterwards:

<?php
/**
 * RSS 0.92 Feed Template for displaying RSS 0.92 Posts feed.
 * @package WordPress
 */

header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
$more = 1;

/* generate rss feeds for tags */
$tag = (urldecode($_GET['tag']));
if (!empty($tag)) {
    query_posts("tag=$tag");
}

?>
<?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>

Once you have dropped this code into the feed-rss.php file and uploaded it to your wp-includes directory, you should be able to pull up an RSS feed based on tags by using the following URL structures:

  • http://www.yourwebsite.com/feed/?tag=tag-name-here
  • http://www.mysite.com/feed/rss/?tag=tag-name-here

 

Thanks to http://www.ebrueggeman.com/ for sharing this!!

Share this post on:

  • Click to share on Facebook (Opens in new window) Facebook
  • Click to share on X (Opens in new window) X
  • Click to share on LinkedIn (Opens in new window) LinkedIn
  • Click to share on Pinterest (Opens in new window) Pinterest

Related

About Cotton Rohrscheib

The Cotton Club is a monthly podcast hosted by me, Cotton Rohrscheib. I'm a 52 year old entrepreneur w/ ADHD, OCD (and now AARP) that refuses to grow up as I grow old. I have collaborated and invested in hundreds of projects throughout my career in multiple industries such as; technology, healthcare, and agriculture. I also have 25 years experience in the marketing industry as a co-founder of an award-winning advertising agency. I will undoubtedly cover a wide variety of topics on my podcast while sharing some really crazy stories and situations that I've been fortunate to witness firsthand. I also have a book coming out in 2025 titled, "Mistakes were Made"

Please Drop Your Questions or CommentsCancel reply

Let’s Connect

  • Email
  • Facebook
  • Instagram
  • LinkedIn
  • Twitter

Recent Updates

  • EP:032 – Cotton Rohrscheib & Diana DeHart
  • Challenges & Opportunities Going into 2025
  • Find us at the 2025 Arkansas Women in Agriculture Conference in Hot Springs, Arkansas
  • Be Sure to Checkout FBN’s Farmers First™  Crop Nutrition & Adjuvant Lineup for 2025
  • What we all need in Dark Times…

Blog Categories

  • Blog (419)
  • Entertainment (376)
  • Faith & Family (147)
  • Farm & Business (288)
  • Health & Wellness (33)
  • Marketing & Tech (584)
  • Podcasts (31)
  • Urban Farming (20)
  • Weekend Projects (1)

Listen & Subscribe

Blog Archives

Join the Cotton Club!

 

Content Copyright: 2001-2025
Cotton Rohrscheib | Rohrscheib Capital

 

Loading Comments...
 

You must be logged in to post a comment.