This filter returns the landscape thumbnail size when a gallery is configured to display five columns of thumbnails per row.
add_filter('maxgalleria_thumb_size_landscape_five_column', 'thumb_size_landscape_five_column', 10, 1); $thumb_size
An array containing the thumbnail width (default = 200) and height (default = 133).
add_filter('maxgalleria_thumb_size_landscape_five_column', 'thumb_size_landscape_five_column', 10, 1);
function thumb_size_landscape_five_column($thumb_size) {
}
Defined in maxgalleria-hooks.php.
Used in maxgalleria-image-gallery.php.