'#ostrich-blog-infinite-scroll', 'render' => 'ostrich_blog_infinite_scroll_render', 'footer' => 'page', 'wrapper' => false, 'footer_widgets' => false, 'posts_per_page' => get_option('posts_per_page'), ) ); } // Add theme support for Responsive Videos. add_theme_support( 'jetpack-responsive-videos' ); } add_action( 'after_setup_theme', 'ostrich_blog_jetpack_setup' ); /** * Custom render function for Infinite Scroll. */ function ostrich_blog_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; } } /** * Sort all Infinite Scroll results alphabetically by post name * * @param array $args * @filter infinite_scroll_query_args * @return array */ function franhise_infinite_scroll_query_args( $args ) { $args['ignore_sticky_posts'] = true; return $args; } add_filter( 'infinite_scroll_query_args', 'franhise_infinite_scroll_query_args' );