'click', 'container' => 'main', 'footer' => false, 'wrapper' => false, ) ); /** * Add theme support for Responsive Videos. */ add_theme_support( 'jetpack-responsive-videos' ); /** * Add theme support for Logo upload. */ add_image_size( 'boardwalk-logo', 444, 96 ); add_theme_support( 'site-logo', array( 'size' => 'boardwalk-logo' ) ); } add_action( 'after_setup_theme', 'boardwalk_jetpack_setup' ); /** * Return early if Site Logo is not available. */ function boardwalk_the_site_logo() { if ( ! function_exists( 'jetpack_the_site_logo' ) ) { return; } else { jetpack_the_site_logo(); } } /** * Overwritte default gallery widget content width. */ function boardwalk_gallery_widget_content_width( $width ) { return 624; } add_filter( 'gallery_widget_content_width', 'boardwalk_gallery_widget_content_width');