Skip to content

Instantly share code, notes, and snippets.

@lamberger
Last active March 6, 2022 10:03
Show Gist options
  • Save lamberger/ed939cb6c5e0e34b499bbc370e3b1057 to your computer and use it in GitHub Desktop.
Save lamberger/ed939cb6c5e0e34b499bbc370e3b1057 to your computer and use it in GitHub Desktop.
Add wp custom post type feed to main RSS feed
function pjl_skh_feed($qv) {
if (isset($qv['feed']) && !isset($qv['post_type']))
$qv['post_type'] = array('post', 'cpt_nr1', 'cpt_nr2');
return $qv;
}
add_filter('request', 'pjl_skh_feed');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment