Skip to content

Instantly share code, notes, and snippets.

@kachi
Created March 10, 2012 18:12
Show Gist options
  • Select an option

  • Save kachi/2012346 to your computer and use it in GitHub Desktop.

Select an option

Save kachi/2012346 to your computer and use it in GitHub Desktop.
<?php
function future_posts_in_feed($query) {
if ($query->is_feed) {
$query->set('post_status','publish,future');
}
return $query;
}
add_filter('pre_get_posts','future_posts_in_feed');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment