Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 22, 2013 03:34
Show Gist options
  • Save spencejs/5218753 to your computer and use it in GitHub Desktop.
Save spencejs/5218753 to your computer and use it in GitHub Desktop.
Add Custom Post Type To Main Wordpress Feed
//Add Custom Post Type To Feed
function mysite_feed_request($vars) {
if (isset($vars['feed']) && !isset($vars['post_type']))
$vars['post_type'] = array('post', 'projects');
return $vars;
}
add_filter('request', 'mysite_feed_request');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment