Updating Jetpack integration
This commit is contained in:
parent
23182dd2e5
commit
004a279dea
|
@ -1,44 +1,53 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Jetpack Compatibility File.
|
* Jetpack Compatibility File
|
||||||
*
|
*
|
||||||
* @link https://jetpack.com/
|
* @link https://jetpack.me/
|
||||||
*
|
*
|
||||||
* @package understrap
|
* @package UnderStrap
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if ( ! function_exists( 'understrap_jetpack_setup' ) ) {
|
/**
|
||||||
/**
|
* Jetpack setup function.
|
||||||
* Jetpack setup function.
|
*
|
||||||
*
|
* See: https://jetpack.me/support/infinite-scroll/
|
||||||
* See: https://jetpack.com/support/infinite-scroll/
|
* See: https://jetpack.me/support/responsive-videos/
|
||||||
* See: https://jetpack.com/support/responsive-videos/
|
*/
|
||||||
*/
|
function components_jetpack_setup() {
|
||||||
function understrap_jetpack_setup() {
|
// Add theme support for Infinite Scroll.
|
||||||
// Add theme support for Infinite Scroll.
|
add_theme_support( 'infinite-scroll', array(
|
||||||
add_theme_support( 'infinite-scroll', array(
|
'container' => 'main',
|
||||||
'container' => 'main',
|
'render' => 'components_infinite_scroll_render',
|
||||||
'render' => 'understrap_infinite_scroll_render',
|
'footer' => 'page',
|
||||||
'footer' => 'wrapper-footer',
|
) );
|
||||||
) );
|
|
||||||
// Add theme support for Responsive Videos.
|
// Add theme support for Responsive Videos.
|
||||||
add_theme_support( 'jetpack-responsive-videos' );
|
add_theme_support( 'jetpack-responsive-videos' );
|
||||||
}
|
|
||||||
|
// Add theme support for Social Menus
|
||||||
|
add_theme_support( 'jetpack-social-menu' );
|
||||||
|
|
||||||
}
|
}
|
||||||
add_action( 'after_setup_theme', 'understrap_jetpack_setup' );
|
add_action( 'after_setup_theme', 'components_jetpack_setup' );
|
||||||
if ( ! function_exists( 'understrap_infinite_scroll_render' ) ) {
|
|
||||||
/**
|
/**
|
||||||
* Custom render function for Infinite Scroll.
|
* Custom render function for Infinite Scroll.
|
||||||
*/
|
*/
|
||||||
function understrap_infinite_scroll_render() {
|
function components_infinite_scroll_render() {
|
||||||
while ( have_posts() ) {
|
while ( have_posts() ) {
|
||||||
the_post();
|
the_post();
|
||||||
if ( is_search() ) :
|
if ( is_search() ) :
|
||||||
get_template_part( 'loop-templates/content', 'search' );
|
get_template_part( 'components/post/content', 'search' );
|
||||||
else :
|
else :
|
||||||
get_template_part( 'loop-templates/content', get_post_format() );
|
get_template_part( 'components/post/content', get_post_format() );
|
||||||
endif;
|
endif;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function components_social_menu() {
|
||||||
|
if ( ! function_exists( 'jetpack_social_menu' ) ) {
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
jetpack_social_menu();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Reference in New Issue