Skip to content

Instantly share code, notes, and snippets.

@ville6000
Last active April 14, 2017 05:18
Show Gist options
  • Save ville6000/ba8109db5e7d4cf5f366 to your computer and use it in GitHub Desktop.
Save ville6000/ba8109db5e7d4cf5f366 to your computer and use it in GitHub Desktop.
Change post per page
<?php
function change_posts_per_page( $query ) {
if ( is_main_query() && is_archive() ) {
$query->set( 'posts_per_page', -1 );
}
}
add_action( 'pre_get_posts', 'change_posts_per_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment