HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/dragonexpert.com/wp-content/themes/coni/inc/jetpack.php
<?php
/**
 * Jetpack Compatibility File.
 *
 * @link https://jetpack.me/
 *
 * @package Coni
 */

/**
 * Add theme support for Infinite Scroll.
 * See: https://jetpack.me/support/infinite-scroll/
 */
function coni_jetpack_setup() {
	add_theme_support( 'infinite-scroll', array(
		'container' => 'main',
		'render'    => 'coni_infinite_scroll_render',
		'footer'    => 'page',
	) );

	
	//Testimonials CPT
	add_theme_support( 'jetpack-testimonial' );

} // end function coni_jetpack_setup
add_action( 'after_setup_theme', 'coni_jetpack_setup' );

/**
 * Custom render function for Infinite Scroll.
 */
function coni_infinite_scroll_render() {
	while ( have_posts() ) {
		the_post();
		get_template_part( 'template-parts/content', get_post_format() );
	}
} // end function coni_infinite_scroll_render