You appear to be a bot. Output may be restricted
Description
Disable autoplay
shortcode attribute in context of an iframe Added via shortcode_atts_video
& shortcode_atts_audio
in init
Usage
$array = Jetpack_Iframe_Embed::disable_autoplay( $atts );
Parameters
- $atts
- ( array ) required – The output array of shortcode attributes.
Returns
array The output array of shortcode attributes.
Source
File name: jetpack/_inc/lib/class.jetpack-iframe-embed.php
Lines:
1 to 3 of 3
static function disable_autoplay( $atts ) { return array_merge( $atts, array( 'autoplay' => false ) ); }