Viper007Bond

Untitled

Sep 19th, 2011
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. add_action( 'pre_get_posts', 'danniel_show_future_posts' );
  2.  
  3. function danniel_show_future_posts( $query ) {
  4.     global $wp_the_query;
  5.  
  6.     // Main query only and on a category archive
  7.     if ( $query === $wp_the_query && $query->is_category() ) {
  8.         $query->set( 'post_status', array( 'published', 'future' ) );
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment