Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created January 5, 2013 05:24
Show Gist options
  • Save claudiosanches/4459927 to your computer and use it in GitHub Desktop.
Save claudiosanches/4459927 to your computer and use it in GitHub Desktop.
<?php
function cs_custom_posts_per_page( $query ) {
$query->query_vars['posts_per_page'] = 9999;
return;
}
add_filter( 'pre_get_posts', 'cs_custom_posts_per_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment