File: /var/www/html/wpkoopkj/wp-content/themes/ohio/inc/init/extras.php
<?php
function ohio_init_body_classes( $classes ) {
// Adds a class of group-blog to blogs with more than 1 published author.
if ( is_multi_author() ) {
$classes[] = 'group-blog';
}
// Adds a class of hfeed to non-singular pages.
if ( ! is_singular() ) {
$classes[] = 'hfeed';
}
return $classes;
}
add_filter( 'body_class', 'ohio_init_body_classes' );
function ohio_init_jetpack() {
add_theme_support( 'infinite-scroll', array(
'container' => 'main',
'render' => 'ohio_lh_jetpack_infinite_render',
'footer' => 'page',
) );
add_theme_support( 'jetpack-responsive-videos' );
}
function ohio_lh_jetpack_infinite_render() {
while ( have_posts() ) {
the_post();
if ( is_search() ) {
get_template_part( 'parts/content', 'search' );
} else {
get_template_part( 'parts/content', get_post_format() );
}
}
}
add_action( 'after_setup_theme', 'ohio_init_jetpack' );