They don’t normally show there
That is how they are supposed to work.
Each CPT has a feed of it’s own by default
Everything in WP has a feed it seems!
But if you want them in your main feed
this can go in your functions.php
// ADDS POST TYPES TO RSS FEED
function myfeed_request($qv) {
if (isset($qv['feed']) && !isset($qv['post_type']))
$qv['post_type'] = array('ve_products', 'post');
return $qv;
}
add_filter('request', 'myfeed_request');
You see this line:
$qv['post_type'] = array('ve_products', 'post');
That includes normal posts and my CPT of ve_products in my main feed
You would swap out that for your CPT, if you have more CPTs, add them into that array
Related Posts:
- Use register_post_type() to modify an existing post type
- Add Custom Fields to Custom Post Type RSS
- Custom post type pagination 404 fix?
- Per Post Type Revision Numbers
- Get list of all registered post types slugs
- How to Make a Separate RSS Feed for Each Custom Post Type
- WP_Query ignores post_type in category view
- How to get only posts, pages and custom post types in WordPress
- How can I generate a RSS feed based on a custom WP_Query?
- How do I implement custom fields without using any plugins?
- Better to use a post type archive, page template, or shortcode for generating a highly configurable CPT archive?
- Password-protect a custom rss feed
- Custom post types – RSS lastBuildDate issue
- Adding a term name from a custom taxonomy assigned to a post link displayed by a wp_query loop based on another taxonomy
- How to remove CPT comment feed from head?
- Registered Post Type Isn’t Showing in Admin Menu
- Add Taxonomy Values Within a Custom Post Type RSS Feed
- RSS feed for dynamic set of custom taxonomies terms
- Disable comments from showing up public for Custom Post Type
- Add Content Exclusively to a Custom Post Type Feed
- Sub-Sub-Blogs — creating and importing content into a custom sub-type
- Multiple post type queries (with specific arguments for each)
- How to retrieve a custom post’s capability?
- Use get_post_types to query only custom posts types
- WP_Query | ‘post_type’ doesn’t work
- Publish an XML feed from a CPT with ACF fields?
- Include only recents custom posts in WP rss feed
- Custom taxonomy in custom post RSS feed
- child of post type (custom)
- Display custom fields from custom posts in RSS feed
- How do I set default meta value by post type?
- Limit amount of posts made within a custom taxonomy
- Incorrect post_type in url of taxonomy term
- Add custom post type drafts to RSS feed
- How to define which register_post_status goes to which register_post_type?
- Using a custom post type for an RSS feed only
- Custom post type RSS feed, multiple post published on same day bug
- Is it possible to filter the display name for post formats for display in the Formats meta box?
- get_the_post_thumbnail_url(‘full’) returns empty from custom post type
- single-{post_type}.php not working
- How to Set Taxonomy Object Description?
- Show only public custom posts in home page
- Can I change my post type to anything and my site still work?
- post_parent in custom post type
- Custom filter for main search: how to exclude specific post_type from search results
- Creating separate feeds for custom post types
- get_post_types – exclude multiple post types by name
- Remove taxonomies using register_post_type_args
- Custom post type and standard post not displaying or working
- post_type internal ID?
- Dynamic pages for linked categories and content
- How to fetch custom post types with its full data on wordpress?
- Custom post type in theme not appearing
- How to copy a custom field from the user’s CPT to the user’s normal posts
- get_post_types not working properly in admin
- Add filter to Admin list for all custom post types by their custom taxonomies
- Post Type => Any conundrum
- wp3 custom post types rss
- Disable permalinks, but allow RSS feeds
- How to hide list from custom post type
- Why is my custom post content only viewable when signed into WordPress?
- Custom Post Type Single Page is not working
- Get all post types that supports tags
- custom post type single page not found after aotumatic publish By the author’s robot
- Custom post type single with custom URL structure
- How to pass modified post to RSS feed?
- How to mix 2 kinds of post types
- Add Custom Term to RSS Feed Titles
- Change Custom Post Type to Post + Category
- Shortcode in excerpt
- How can i order my posts by post type?
- Permanent Custom Post Type
- Custom post type post_type_link gives “page not found” on any other custom post type
- How to set a default CPT template and create post attribute´s display rules?
- Post types showing tables…Can I do that?
- custom post permalink
- WordPress feed only shows first page of category
- do action inside a class is not working
- Updated from 3.8 to 4.2 and all post types changed to “post”
- Pulling in Related Posts based on Post Type array
- Generate custom RSS from a plugin
- Filter RSS feed for custom post type to events for next 7 days only
- How would I get a list of posts from a custom post type
- How can I make a custom post type that loops pages in a new dashboard page, each single page is a new dashboard page (all within the back-end)?
- Why does ‘exclude_from_search’ exclude a custom post type from WP_Query?
- How would you feed Custom Post Types to Facebook?
- How to add post type in masonry posts elementory widget
- Changing the RSS feed titles not working
- How to feed custom post type to a facebook page?
- Quering array of post types & pagination. Articles are repeating sometimes on different pages
- custom taxonomy not return in the code
- Custom post type REST api 404: Updating failed. No route was found matching the URL and request method
- How To Display A List Of CPT Posts In A Meta Box On Menus Page?
- Control content before and after custom post type loop
- Custom Post Types Archives and Single Pages not showing custom taxonomy data
- Custom post doesn’t show featured image
- Showing custom post type categories in the menu
- Displaying custom post types by category
- How to setup a single post page for my custom post type?
- Disable custom taxonomy on admin bar