Skip to content

Instantly share code, notes, and snippets.

@thomasgriffin
Created February 3, 2014 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasgriffin/8787961 to your computer and use it in GitHub Desktop.
Save thomasgriffin/8787961 to your computer and use it in GitHub Desktop.
Remove YouTube controls from video.
<?php
add_filter( 'tgmsp_youtube_query_args', 'tgm_soliloquy_remove_youtube_controls' );
function tgm_soliloquy_remove_youtube_controls( $query_args ) {
$query_args['controls'] = '0';
return $query_args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment