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

55 lines
1.3 KiB
PHP
Raw Normal View History

<?php
/**
2016-09-27 06:04:56 +00:00
* Jetpack Compatibility File
*
2016-03-10 11:36:21 +00:00
* @link https://jetpack.com/
*
2013-02-25 07:15:14 +00:00
* @package _s
*/
2015-10-26 15:33:55 +00:00
/**
* Jetpack setup function.
*
2016-03-10 11:36:21 +00:00
* See: https://jetpack.com/support/infinite-scroll/
* See: https://jetpack.com/support/responsive-videos/
* See: https://jetpack.com/support/content-options/
2015-10-26 15:33:55 +00:00
*/
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' );
// Add theme support for Content Options.
add_theme_support( 'jetpack-content-options', array(
2017-06-26 20:06:01 +00:00
'post-details' => array(
'stylesheet' => '_s-style',
'date' => '.posted-on',
'categories' => '.cat-links',
'tags' => '.tags-links',
'author' => '.byline',
'comment' => '.comments-link',
),
) );
}
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;
}
}