Skip to content

Instantly share code, notes, and snippets.

@jessijean
Created October 27, 2013 19:23
Show Gist options
  • Save jessijean/7186770 to your computer and use it in GitHub Desktop.
Save jessijean/7186770 to your computer and use it in GitHub Desktop.
//add custom post types to the rss feed in wordpress
add_filter('request', 'smashing_custom_feed');
function smashing_custom_feed( $vars ) {
if ( isset( $vars['feed'] ) ) {
$vars['post_type'] = get_post_types();
}
return $vars;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment