Skip to content

Instantly share code, notes, and snippets.

@mikemcalister
Created January 13, 2016 21:58
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/3f832345f72aadee2cbf to your computer and use it in GitHub Desktop.
Save mikemcalister/3f832345f72aadee2cbf to your computer and use it in GitHub Desktop.
function theme_infinite_scroll_setup() {
add_theme_support( 'infinite-scroll', array(
'container' => 'content',
'footer' => 'page',
'posts_per_page' => 10,
) );
}
add_action( 'after_setup_theme', 'theme_infinite_scroll_setup' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment