Question

I created a custom post type called article. I can create articles and everything is working fine. However, I have questions on the feeds.

1) How do I see the latest articles I created in a feed?

2) How do I see all the blog posts and articles all in one feed?

Was it helpful?

Solution

You can add this code to your functions.php file

function myfeed_request($qv) 
{
   if (isset($qv['feed']) && !isset($qv['post_type']))
   {
     $qv['post_type'] = get_post_types($args = array(
                'public'   => true,
                '_builtin' => false
     ));
     array_push($qv['post_type'],'post');
     return $qv;
   }
}
add_filter('request', 'myfeed_request');

Check out this page here for more details

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top