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