How to Add Custom Post Types to Your Main WordPress RSS Feed

Posted on September 3rd, 2010 by in Tutorials | 12 Comments  
How to Add Custom Post Types to Your Main WordPress RSS Feed

Custom Post Types was one of the most hyped feature of WordPress 3.0. This feature alone expanded the horizon of WordPress usage as a Content Management System (CMS). If you are using Custom Post Types, or thinking of custom post types, then you may have the urge to add it into your main RSS Feed. This option is not built-in by default because your main WordPress RSS feed only includes “Posts” not even pages, so custom post types are a long shot. In this article, we will share how you can add Custom Post Types to your main WordPress RSS feeds.

You would need to open your theme’s functions.php file and add the following code within the PHP markup:

function myfeed_request($qv) {
	if (isset($qv['feed']))
		$qv['post_type'] = get_post_types();
	return $qv;
}
add_filter('request', 'myfeed_request');

This code modifies the query to keep the default content type for blog posts “post” in the main RSS feed, and also adding new custom post types.

But what if you have five custom post types in your new project, and you only want to add three to the main RSS feed? Well that shouldn’t be any problem because we will just modify the code slightly to give you the option to only include the ones that you want.

function myfeed_request($qv) {
	if (isset($qv['feed']) && !isset($qv['post_type']))
		$qv['post_type'] = array('post', 'story', 'books', 'movies');
	return $qv;
}
add_filter('request', 'myfeed_request');

If you see in the code above, we simply added an array to modify the post_types that will be shown in the main RSS feed. We are showing the default posts, story, books, and movies.

Source: Core Trac Ticket #12943

About

Editorial Staff at WPBeginner mainly Syed and David.

Post comment as twitter logo facebook logo
Sort: Newest | Oldest

thanks its helpfull for my video site

MoiMM 5 pts

Hello !

I try it ... but don't work for me ! :(

Someone can help me ?

My website > www.graphikandsound.com

I have make refresh on my feedburner account.. but nothing !

Best regards,

:)

MoiMM 5 pts

My last changes in my function.php file :

<code>

/*-----------------------------------------------------------------------------------*//* Add Post format in RSS/*-----------------------------------------------------------------------------------*/ function myfeed_request($qv) { if (isset($qv['feed'])) $qv['post_type'] = get_post_types(array( 'public' => true ) ); return $qv;}add_filter('request', 'myfeed_request');

</code>

navjotjsingh 5 pts

You should use get_post_types( array( 'public' => true ) ) instead of get_post_types() because you may not want the post types which are set not to be a publicly querable to be included in the feed.

Thanks!
I've tried every permutation of this over last few weeks and nothing works. I use feedburner, could that be the problem?

this tutorial shows you a similar way to achieve this and where you dont have to specify each post type - http://www.ballyhooblog.com/add-custom-post-types-...

Could you add 'page' and so have pages in the feed as well?

YES. Pages are it's own custom post type - "page". So add that along with your other custom post types.

I've just found this function and implemented this code (the first one for adding all custom post types) and it works great for adding my custom posts type to my main feed.

However, it has also added my pages to my feed. I thought this should only add posts, not pages?

How do I exclude pages?

running that code in functions caused a white screen of death. Looking into why...

Tweets about us: