File: /home/storage/c/63/6c/usesambura1/public_html/yr/wp-content/themes/ultra/inc/jetpack.php
<?php
/**
* Jetpack Compatibility File
* See: http://jetpack.me/
*
* @package ultra
* @since ultra 0.9
* @license GPL 2.0
*/
/**
* Add theme support for Infinite Scroll.
* See: http://jetpack.me/support/infinite-scroll/
*/
function ultra_jetpack_setup() {
add_theme_support( 'infinite-scroll', array(
'container' => 'main',
'render' => 'ultra_infinite_scroll_render',
'footer' => 'page',
'posts_per_page' => 8
) );
}
add_action( 'after_setup_theme', 'ultra_jetpack_setup' );
if ( ! function_exists( 'ultra_infinite_scroll_render' ) ) :
/**
* Custom render function for Infinite Scroll.
*/
function ultra_infinite_scroll_render() {
if ( function_exists( 'is_woocommerce' ) && ( is_shop() || is_woocommerce() ) ) {
echo '<ul class="products">';
while ( have_posts() ) {
the_post();
wc_get_template_part( 'content', 'product' );
}
echo '</ul>';
} else {
while ( have_posts() ) {
the_post();
if ( is_search() ) :
get_template_part( 'template-parts/content', 'search' );
else :
get_template_part( 'template-parts/content', get_post_format() );
endif;
}
}
}
endif;