문제

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?

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top