FIXED: Infinite Scroll on Custom Post Page
-
In ‘infinite-scroll/infinite-scroll.php’ scroll to the bottom and find:
/**
* Determines if the jQuery plugin and corresponding options should
* be output onto the page.
*
* @return bool
*/
function shouldLoadJavascript() {
// Don’t need to load the plugin on single pages
if (is_singular()) {
return false;
}return true;
}Change ‘false’ to ‘true’
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘FIXED: Infinite Scroll on Custom Post Page’ is closed to new replies.