Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marklchaves/3de664aef48c66aa28ba981321e6e69b to your computer and use it in GitHub Desktop.
Save marklchaves/3de664aef48c66aa28ba981321e6e69b to your computer and use it in GitHub Desktop.
Add muted and playsinline attributes to WordPress generated video tag to force autoplay on mobile.
<?php // Ignore this line when adding to your child theme functions.php file.
/** || Add muted and playsinline to force autoplay on mobile. */
add_filter( 'wp_video_shortcode', function( $html ) {
return str_replace( '<video', '<video muted playsinline ', $html );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment