Skip to content

Instantly share code, notes, and snippets.

@cdils
Last active April 26, 2017 11:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cdils/3c211edf45488c253118 to your computer and use it in GitHub Desktop.
Save cdils/3c211edf45488c253118 to your computer and use it in GitHub Desktop.
Remove Pagination from an archive
<?php //remove this entire line
// Remove Pagination from a custom post type
add_action( 'parse_query', 'cd_nopaging' );
function cd_nopaging( $query ) {
if ( is_post_type_archive( 'your-cpt' ) ) {
$query->set( 'nopaging', 1 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment