Skip to content

Instantly share code, notes, and snippets.

@ryelle
Created April 8, 2015 14:11
Show Gist options
  • Select an option

  • Save ryelle/67d0bba9cfb7ea475e65 to your computer and use it in GitHub Desktop.

Select an option

Save ryelle/67d0bba9cfb7ea475e65 to your computer and use it in GitHub Desktop.
Adirondack Child Theme for scrolling infinite scroll
<?php
function adirondack_child_setup() {
add_theme_support( 'infinite-scroll', array(
'type' => 'scroll',
'container' => 'main',
'footer' => 'page',
'posts_per_page' => 12,
) );
}
add_action( 'after_setup_theme', 'adirondack_child_setup', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment