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

66 lines
1.4 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.
2020-04-05 20:49:27 +00:00
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.
2020-04-05 20:49:27 +00:00
add_theme_support(
'jetpack-content-options',
array(
'post-details' => array(
'stylesheet' => '_s-style',
'date' => '.posted-on',
'categories' => '.cat-links',
'tags' => '.tags-links',
'author' => '.byline',
'comment' => '.comments-link',
),
'featured-images' => array(
'archive' => true,
'post' => true,
'page' => true,
),
)
);
}
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_type() );
endif;
}
}