Skip to content

Instantly share code, notes, and snippets.

@jocastaneda
Created June 19, 2014 21:05
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 jocastaneda/43dc9486e515fb05db12 to your computer and use it in GitHub Desktop.
Save jocastaneda/43dc9486e515fb05db12 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'shortcode_atts_gallery', 'medium_size' );
function medium_size( $attr ){
$attr['size'] = 'medium';
return $attr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment