Created
February 3, 2014 17:11
-
-
Save thomasgriffin/8787961 to your computer and use it in GitHub Desktop.
Remove YouTube controls from video.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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