Skip to content

Instantly share code, notes, and snippets.

@stefanledin
Last active April 26, 2019 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefanledin/929d610ee17e3eed220d9907753945ba to your computer and use it in GitHub Desktop.
Save stefanledin/929d610ee17e3eed220d9907753945ba to your computer and use it in GitHub Desktop.
<?php
add_action( 'pre_get_posts', function( $query ) {
if ( ! is_admin() && is_post_type_archive( 'articles' ) ) {
$query->set('posts_per_page', 1);
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment