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.
_s/inc/jetpack.php

42 lines
1006 B
PHP
Raw Normal View History

<?php
/**
* Jetpack Compatibility File.
*
* @link https://jetpack.me/
*
2013-02-25 07:15:14 +00:00
* @package _s
*/
2015-10-26 15:33:55 +00:00
/**
* Jetpack setup function.
*
* See: https://jetpack.me/support/infinite-scroll/
* See: https://jetpack.me/support/responsive-videos/
*/
function _s_jetpack_setup() {
2015-10-26 15:33:55 +00:00
// Add theme support for Infinite Scroll.
add_theme_support( 'infinite-scroll', array(
'container' => 'main',
'render' => '_s_infinite_scroll_render',
'footer' => 'page',
) );
2015-10-26 15:33:55 +00:00
// Add theme support for Responsive Videos.
add_theme_support( 'jetpack-responsive-videos' );
} // end function _s_jetpack_setup
add_action( 'after_setup_theme', '_s_jetpack_setup' );
2015-05-27 17:49:01 +00:00
/**
* Custom render function for Infinite Scroll.
*/
function _s_infinite_scroll_render() {
while ( have_posts() ) {
the_post();
if ( is_search() ) :
get_template_part( 'template-parts/content', 'search' );
else :
get_template_part( 'template-parts/content', get_post_format() );
endif;
}
2015-05-27 17:49:01 +00:00
} // end function _s_infinite_scroll_render