Skip to content

Instantly share code, notes, and snippets.

<?php
/**
* Disables the infinite scroll on the {post_type} archive
* Original: @krugazul
* @package theme
*/
function infinite_scroll_disable($supported){
if(is_post_type_archive('{post_type}')){
$supported = false;
}