Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jakebresnehan/2590984 to your computer and use it in GitHub Desktop.
Save jakebresnehan/2590984 to your computer and use it in GitHub Desktop.
Add custom post type to feed
<?php
function myfeed_request($qv) {
if (isset($qv['feed']) && !isset($qv['post_type']))
$qv['post_type'] = array('post', 'snippets');
return $qv;
}
add_filter('request', 'myfeed_request');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment