Skip to content

Instantly share code, notes, and snippets.

@norcross
Created December 17, 2012 12:21
Show Gist options
  • Save norcross/4317913 to your computer and use it in GitHub Desktop.
Save norcross/4317913 to your computer and use it in GitHub Desktop.
add custom post type to RSS
function cpt_feed_request($qv) {
if (isset($qv['feed']))
$qv['post_type'] = get_post_types();
return $qv;
}
add_filter('request', 'cpt_feed_request');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment