hello
Server : Apache/2.4.52 (Ubuntu) System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : servadmin ( 1000) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE Directory : /www/docs/www.obusignal.com/www.obusignal.com/wp-content/themes/colormag-pro/inc/ |
<?php
/**
* Jetpack Compatibility File.
*
* @link https://jetpack.me/
*
* @package ThemeGrill
* @subpackage Colormag
* @since Colormag 1.0
*/
/**
* Jetpack setup function.
*
* See: https://jetpack.me/support/infinite-scroll/
* See: https://jetpack.me/support/responsive-videos/
*/
function colormag_jetpack_setup() {
// Add theme support for Infinite Scroll.
add_theme_support( 'infinite-scroll', array(
'container' => 'content',
'render' => 'colormag_infinite_scroll_render',
'footer' => 'page',
'wrapper' => false,
) );
// Add theme support for Responsive Videos.
add_theme_support( 'jetpack-responsive-videos' );
}
add_action( 'after_setup_theme', 'colormag_jetpack_setup' );
/**
* Custom render function for Infinite Scroll.
*/
function colormag_infinite_scroll_render() {
while ( have_posts() ) {
the_post();
if ( is_search() ) :
get_template_part( 'content', 'archive' );
else :
get_template_part( 'content', '' );
endif;
}
}
/**
* Enables Jetpack's Infinite Scroll in search pages, archive pages and blog pages and disables it in WooCommerce product archive pages
* @return bool
*/
function colormag_jetpack_infinite_scroll_supported() {
return current_theme_supports( 'infinite-scroll' ) && ( is_home() || is_archive() || is_search() ) && ! ( is_post_type_archive( 'product' ) || is_tax( 'product_cat' ) || is_tax( 'product_tag' ) );
}
add_filter( 'infinite_scroll_archive_supported', 'colormag_jetpack_infinite_scroll_supported' );