array( 'sidebar-2', 'sidebar-3', 'sidebar-4', 'sidebar-5' ), 'container' => 'content', 'footer' => 'page', ) ); } add_action( 'after_setup_theme', 'hero_infinite_scroll_init' ); /** * Add support for Site Logo. */ function hero_site_logo_setup() { /** * Add a custom image size for Site Logo */ add_image_size( 'hero-logo', 1880, 240 ); /** * Add support for Site Logo */ add_theme_support( 'site-logo', array( 'size' => 'hero-logo' ) ); } add_action( 'after_setup_theme', 'hero_site_logo_setup' ); /** * Return early if Site Logo is not available. */ function hero_the_site_logo() { if ( ! function_exists( 'jetpack_the_site_logo' ) ) { return; } else { jetpack_the_site_logo(); } }