is_feed && !isset($query->post_type) && empty($query->post_type)) { $args = array( 'public' => true, '_builtin' => false ); $output = 'names'; $operator = 'and'; $post_types = get_post_types( $args , $output , $operator ); // remove 'pages' from the RSS $post_types = array_merge( $post_types, array('post') ) ; $query->set( 'post_type' , $post_types ); } return $query; } ?>