Skip to content

Instantly share code, notes, and snippets.

@nickeforsberg
Last active June 8, 2021 09:20
Show Gist options
  • Save nickeforsberg/26de751d08672d0d99e1 to your computer and use it in GitHub Desktop.
Save nickeforsberg/26de751d08672d0d99e1 to your computer and use it in GitHub Desktop.
Multiple Custom Post Types to Wordpress main RSS Feed.
// Add custom post types main RSS feed.
function wp_rss_feed( $query ) {
if ( $query->is_feed() )
$query->set( 'post_type', array( 'post', 'events', 'books' ) );
return $query;
}
add_filter( 'pre_get_posts', 'wp_rss_feed' );
@nickeforsberg
Copy link
Author

Sorry!! I din't get this to work any more! sorry!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment