This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/inc/jetpack.php

44 lines
1.1 KiB
PHP
Raw Normal View History

2014-12-10 11:36:38 +00:00
<?php
/**
* Jetpack Compatibility File.
*
* @link https://jetpack.com/
2014-12-10 11:36:38 +00:00
*
* @package understrap
*/
/**
* Jetpack setup function.
*
* See: https://jetpack.com/support/infinite-scroll/
* See: https://jetpack.com/support/responsive-videos/
2014-12-10 11:36:38 +00:00
*/
2016-11-01 19:36:43 +00:00
if ( ! function_exists ( 'understrap_jetpack_setup' ) ) {
function understrap_jetpack_setup() {
// Add theme support for Infinite Scroll.
add_theme_support( 'infinite-scroll', array(
'container' => 'main',
'render' => 'understrap_infinite_scroll_render',
'footer' => 'wrapper-footer',
) );
// Add theme support for Responsive Videos.
add_theme_support( 'jetpack-responsive-videos' );
}
2014-12-10 11:36:38 +00:00
}
add_action( 'after_setup_theme', 'understrap_jetpack_setup' );
/**
* Custom render function for Infinite Scroll.
*/
2016-11-01 19:36:43 +00:00
if ( ! function_exists ( 'understrap_infinite_scroll_render' ) ) {
function understrap_infinite_scroll_render() {
while ( have_posts() ) {
the_post();
if ( is_search() ) :
get_template_part( 'loop-templates/content', 'search' );
else :
get_template_part( 'loop-templates/content', get_post_format() );
endif;
}
}
}