'content', 'footer_widgets' => ( is_active_sidebar( 'sidebar-1' ) && jetpack_is_mobile() ), ) ); /** * Add theme support for Responsive Videos. */ add_theme_support( 'jetpack-responsive-videos' ); /** * Add theme support for Logo upload. */ add_image_size( 'skylark-logo', 387, 160 ); add_theme_support( 'site-logo', array( 'size' => 'skylark-logo' ) ); } add_action( 'after_setup_theme', 'skylark_jetpack_setup' ); /** * Return early if Site Logo is not available. */ function skylark_the_site_logo() { if ( ! function_exists( 'jetpack_the_site_logo' ) ) { return; } else { jetpack_the_site_logo(); } }