Skip to content

Instantly share code, notes, and snippets.

Created July 30, 2015 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/ec781d6357c83202d4b9 to your computer and use it in GitHub Desktop.
Save anonymous/ec781d6357c83202d4b9 to your computer and use it in GitHub Desktop.
add_filter('pre_get_posts', 'add_cpt_to_main_feed');
function add_cpt_to_main_feed($query){
if ( $query->is_feed() ){
$query->set( 'post_type', array('post', 'xxxxxxx') );
}
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment