'content', 'footer' => 'page', 'render' => 'spun_infinite_scroll', 'posts_per_page' => 15, 'footer_widgets' => array( 'sidebar-1', 'sidebar-2', 'sidebar-3' ), 'wrapper' => false, ) ); add_theme_support( 'social-links', array( 'facebook', 'twitter', 'linkedin', 'tumblr' ) ); } add_action( 'after_setup_theme', 'spun_jetpack_setup' ); /* Load the proper content template */ function spun_infinite_scroll() { while( have_posts() ) { the_post(); get_template_part( 'content', 'home' ); } }