Responsive videos

Optimize your theme so it supports video on any device. This is very important for the increasingly mobile-first web.

To add responsive video support to your theme, add the following code to your theme’s functions.php file:

/**
* Add theme support for Responsive Videos.
*/
function jetpackme_responsive_videos_setup() {
	add_theme_support( 'jetpack-responsive-videos' );
}
add_action( 'after_setup_theme', 'jetpackme_responsive_videos_setup' );