Skip to content

Instantly share code, notes, and snippets.

@mikemcalister
Created January 13, 2016 23:05
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/7040874259161a5c7c9a to your computer and use it in GitHub Desktop.
Save mikemcalister/7040874259161a5c7c9a to your computer and use it in GitHub Desktop.
/**
* Add theme support for Infinite Scroll
*/
function theme_infinite_scroll_setup() {
add_theme_support( 'infinite-scroll', array(
'container' => 'post-wrapper',
'render' => 'theme_render_infinite_posts',
'type' => 'scroll'
) );
}
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