Skip to content

Instantly share code, notes, and snippets.

@pndparade
Last active July 7, 2017 19:44
Show Gist options
  • Save pndparade/7b112d60f2fb5f16f3162f05aa62ddc5 to your computer and use it in GitHub Desktop.
Save pndparade/7b112d60f2fb5f16f3162f05aa62ddc5 to your computer and use it in GitHub Desktop.
Set image size for gallery items in wordpress
function custom_size_gallery($attr) {
// Change size here
$attr['size'] = 'gallery';
return gallery_shortcode($attr);
}
remove_shortcode('gallery');
add_shortcode('gallery', 'custom_size_gallery');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment