Skip to content

Instantly share code, notes, and snippets.

@k4zuki02h4t4
Created May 18, 2017 03:42
Show Gist options
  • Select an option

  • Save k4zuki02h4t4/c4edb0de32b0998cd8ce58eefee224e3 to your computer and use it in GitHub Desktop.

Select an option

Save k4zuki02h4t4/c4edb0de32b0998cd8ce58eefee224e3 to your computer and use it in GitHub Desktop.
[WordPress] Play YouTube video inline on iOS.
<?php
/**
* Play YouTube video inline on iOS.
*/
add_filter( 'oembed_dataparse', function ( $return, $data ) {
if ( is_object( $data ) && 'YouTube' === $data->provider_name && ! empty( $data->html ) && is_string( $data->html ) ) {
$return = preg_replace( '/src="([^"]+)"/', 'src="$1&playsinline=1"', $data->html );
}
return $return;
}, 10, 2 );
@k4zuki02h4t4
Copy link
Copy Markdown
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment