Skip to content

Instantly share code, notes, and snippets.

@mikemcalister
Created January 13, 2016 22:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikemcalister/f2a7a2b9427fdaf10015 to your computer and use it in GitHub Desktop.
Save mikemcalister/f2a7a2b9427fdaf10015 to your computer and use it in GitHub Desktop.
/*
* Change the type Infinite Scroll setting from scroll to click
*/
function theme_infinite_scroll_settings( $args ) {
if ( is_array( $args ) )
$args['type'] = 'click';
return $args;
}
add_filter( 'infinite_scroll_settings', 'theme_infinite_scroll_settings' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment