Change Native WordPress Gallery Thumbnail Size

/* ----- GALLERY HACK ------- */
remove_shortcode('gallery');
add_shortcode('gallery', 'dz42_medium_gallery');

function dz42_medium_gallery($atts) {     	  
	$atts['size'] = 'galerija-thumbnail';
	return gallery_shortcode($atts);
}

change wordpress default gallery thumbnail size

Bravo Tomo! :)

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.