Skip to content

Instantly share code, notes, and snippets.

@psflannery
Created October 30, 2013 15:23
Show Gist options
  • Save psflannery/7234490 to your computer and use it in GitHub Desktop.
Save psflannery/7234490 to your computer and use it in GitHub Desktop.
<?phpfunction 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