Skip to content

Instantly share code, notes, and snippets.

@hereswhatidid
Created August 8, 2013 03:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hereswhatidid/6181218 to your computer and use it in GitHub Desktop.
Save hereswhatidid/6181218 to your computer and use it in GitHub Desktop.
Override the default video dimensions via filter
<?php
function override_video_dimensions( $out, $pairs, $atts ) {
$out['width'] = '768';
$out['height'] = '583';
return $out;
}
add_filter( 'shortcode_atts_video', 'override_video_dimensions', 10, 3 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment