Advertisement
BakerMan

Untitled

May 6th, 2013
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_filter( 'pre_get_posts', 'my_show_all_on_day_view_function', 10, 1 );
  2.  
  3. function my_show_all_on_day_view_function( $query ) {
  4. if ( $query->is_main_query() && isset( $query->query_vars['eventDisplay'] ) && $query->query_vars['eventDisplay'] == 'day' ) {
  5. $query->set( 'posts_per_page', '-1' );
  6. }
  7. return $query;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement