AlkantarClanX12

Your IP : 3.149.253.73


Current Path : /home/thanudqk/siamfreetour.com/wp-content/themes/photofocus/inc/
Upload File :
Current File : /home/thanudqk/siamfreetour.com/wp-content/themes/photofocus/inc/jetpack.php

<?php
/**
 * Jetpack Compatibility File
 *
 * @link https://jetpack.com/
 *
 * @package PhotoFocus
 */

/**
 * Jetpack setup function.
 *
 * See: https://jetpack.com/support/infinite-scroll/
 * See: https://jetpack.com/support/responsive-videos/
 * See: https://jetpack.com/support/content-options/
 */
function photofocus_jetpack_setup() {
	// Add theme support for Infinite Scroll.
	add_theme_support( 'infinite-scroll', array(
		'type'           => 'click',
		'container'      => 'infinite-post-wrap',
		'wrapper'        => false,
		'render'         => 'photofocus_infinite_scroll_render',
		'footer'         => false,
	) );
}
add_action( 'after_setup_theme', 'photofocus_jetpack_setup' );

/**
 * Custom render function for Infinite Scroll.
 */
function photofocus_infinite_scroll_render() {
	while ( have_posts() ) {
		the_post();
		if ( is_search() ) :
			get_template_part( 'template-parts/content/content', 'search' );
		else :
			get_template_part( 'template-parts/content/content', get_post_format() );
		endif;
	}
}