Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
wp-content
/
themes
/
signify
/
inc
/
Editing: jetpack.php
<?php /** * Jetpack Compatibility File * * @link https://jetpack.com/ * * @package Signify */ /** * 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 signify_jetpack_setup() { // Add theme support for Infinite Scroll. add_theme_support( 'infinite-scroll', array( 'type' => 'click', 'container' => 'infinite-post-wrap', 'wrapper' => false, 'render' => 'signify_infinite_scroll_render', 'footer' => false, ) ); } add_action( 'after_setup_theme', 'signify_jetpack_setup' ); /** * Custom render function for Infinite Scroll. */ function signify_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; } }
Save
Cancel