Skip to content

Instantly share code, notes, and snippets.

@monecchi
Forked from nickeforsberg/wp_rss_feed.php
Created June 4, 2016 21:22
Show Gist options
  • Save monecchi/b11c7d1097b4e20f097847f1ff1cffd3 to your computer and use it in GitHub Desktop.
Save monecchi/b11c7d1097b4e20f097847f1ff1cffd3 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' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment