Skip to content

Instantly share code, notes, and snippets.

@leobaiano
Created October 31, 2014 15:27
Show Gist options
  • Save leobaiano/1d121ed377b37ca55c65 to your computer and use it in GitHub Desktop.
Save leobaiano/1d121ed377b37ca55c65 to your computer and use it in GitHub Desktop.
Definir tamanho dos thumbs da [gallery] WordPress
function amethyst_gallery_atts( $out, $pairs, $atts ) {
$atts = shortcode_atts( array(
'columns' => '2',
'size' => 'medium',
), $atts );
$out['columns'] = $atts['columns'];
$out['size'] = $atts['size'];
return $out;
}
add_filter( 'shortcode_atts_gallery', 'amethyst_gallery_atts', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment