Last active
December 18, 2015 08:39
-
-
Save wpspeak/5755744 to your computer and use it in GitHub Desktop.
Remove Pagination from CPT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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