Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created June 14, 2013 03:32
Show Gist options
  • Save wpspeak/5779275 to your computer and use it in GitHub Desktop.
Save wpspeak/5779275 to your computer and use it in GitHub Desktop.
Add Jetpack infinite scroll support in Genesis Framework
<?php
// Add support for JetPack infinite scroll
function afn_infinite_scroll() {
add_theme_support( 'infinite-scroll', array(
'container' => 'content',
'footer' => 'footer',
'render' => 'genesis_do_loop'
) );
}
add_action( 'after_setup_theme', 'afn_infinite_scroll' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment