Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active December 18, 2015 08:39
Show Gist options
  • Save wpspeak/5755744 to your computer and use it in GitHub Desktop.
Save wpspeak/5755744 to your computer and use it in GitHub Desktop.
Remove Pagination from CPT
<?php
// Remove Pagination from CPT
add_action('parse_query', 'cpt_nopaging');
function cpt_nopaging($query) {
if (is_post_type_archive('testimonies')) {
$query->set('nopaging', 1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment