Advertisement
phpface

Untitled

Nov 5th, 2017
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. if( ! function_exists( 'videotube_disable_yt_autoplay' ) ){
  2.     /**
  3.      * Disable YT autoplay
  4.      * @param html $html
  5.      * @param string $url
  6.      * @param args $args
  7.      * @return html
  8.      */
  9.     function videotube_disable_yt_autoplay( $html, $url, $args ) {
  10.         return str_replace( "?feature=oembed&autoplay=1", "?feature=oembed", $html );
  11.     }
  12.     add_filter( 'oembed_result', 'videotube_disable_yt_autoplay', 100, 3);
  13.     add_filter( 'embed_oembed_html', 'videotube_disable_yt_autoplay', 100, 3 );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement