Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created November 8, 2017 23:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/927664290e86f93db28a832933bd9d74 to your computer and use it in GitHub Desktop.
Save braddalton/927664290e86f93db28a832933bd9d74 to your computer and use it in GitHub Desktop.
add_action( 'wp_enqueue_scripts', 'genesis_infinite_scroll_load_more_posts_button' );
function genesis_infinite_scroll_load_more_posts_button() {
wp_enqueue_script( 'infinite-scroll', get_stylesheet_directory_uri() . '/is.js', array( 'jquery' ), '1.0.0', true );
wp_enqueue_script( 'infinite-scroll-set', get_stylesheet_directory_uri() . '/set.js' , array( 'jquery', 'infinite-scroll' ), '1.0.0', true );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment