Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi, no it doesn’t by default. But you can use jetpack plugin. It has infinite scroll feature.

    Enabling Infinite Scroll is very similar to adding support for post thumbnails. You can extend Omega capabilities using Code Snippets and add below snippet.

    /**
     * Add theme support for infinite scroll.
     *
     * @uses add_theme_support
     * @return void
     */
    function omega_infinite_scroll_init() {
        add_theme_support( 'infinite-scroll', array(
            'container' => 'content',
        ) );
    }
    add_action( 'after_setup_theme', omega_infinite_scroll_init' );

    Thread Starter Stas_D

    (@demidenok)

    Thnx!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘infinite scrolling’ is closed to new replies.