Created
April 8, 2015 14:11
-
-
Save ryelle/67d0bba9cfb7ea475e65 to your computer and use it in GitHub Desktop.
Adirondack Child Theme for scrolling infinite scroll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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