Infinite scroll divi theme
-
Hi,
I have tried to enable infinite scrolling on my site but haven’t succeed.
I have created jetpack.php in my theme folder with the next code:<?php/** * Jetpack Compatibility File * See: http://jetpack.me/ * * @package NARGA */ /** * Add theme support for Infinite Scroll. * See: http://wwww.narga.net/how-to-make-your-theme-support-jetpacks-infinite-scroll-feature/ */ function narga_jetpack_setup() { add_theme_support( 'infinite-scroll', array( 'footer' => 'footer-info', 'type' => 'scroll', 'footer_widgets' => false, 'container' => 'main-content', 'wrapper' => true, 'render' => false, 'posts_per_page' => false ) ); } add_action( 'after_setup_theme', 'narga_jetpack_setup' ); ?> ?>and add code to function.php but infinite scroll don’t appear:
add_theme_support( 'infinite-scroll', array( 'container' => 'container', 'footer' => 'page', ) ); function mytheme_infinite_scroll_init() { add_theme_support( 'infinite-scroll', array( 'container' => 'content', 'render' => 'mytheme_infinite_scroll_render', 'footer' => 'wrapper', ) ); } add_action( 'init', 'mytheme_infinite_scroll_init' ); function mytheme_infinite_scroll_render() { get_template_part( 'loop' ); }my site is http://tronline.rs
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Infinite scroll divi theme’ is closed to new replies.