Infinite Scroll with custom theme Bridge
-
Hi! I’m trying to implement Jetpack’s Infinite Scroll on this website: http://www.arakoma.com/doppeltangent/
I’ve added the following to my functions.php file, but I feel like perhaps I’m tripping up on the correct ‘render’ and possibly ‘container’ settings.
Any help would be greatly appreciated, I’m new to this and a bit out of my depth! Thanks so much for your time.
/**
* Add support for JetPack infinite scroll
**/function bridge_infinite_scroll_render() {
get_template_part( ‘blog-large-image’ );
}add_theme_support( ‘infinite-scroll’, array(
‘container’ => ‘blog_holder.blog_large_image’,
‘type’ => ‘click’,
‘render’ => ‘bridge_infinite_scroll_render’,
‘footer’ => ‘page’
)
);
The topic ‘Infinite Scroll with custom theme Bridge’ is closed to new replies.