'content', 'render' => 'landing_pagency_infinite_scroll_render', 'footer' => 'site-footer', ) ); // Add theme support for Responsive Videos. add_theme_support( 'jetpack-responsive-videos' ); } add_action( 'after_setup_theme', 'landing_pagency_jetpack_setup' ); /** * Custom render function for Infinite Scroll. */ function landing_pagency_infinite_scroll_render() { while ( have_posts() ) { the_post(); if ( is_search() ) : landing_pagency_archive_post(); else : landing_pagency_archive_post(); endif; } }