This filter returns the image thumbnail for the gallery when displayed with the Image Tiles template.
add_filter('maxgalleria_image_tiles_thumb', 'image_tiles_thumb', 10, 5); $html
The output for the image thumbnail.
$image
The image thumbnail object.
$image_class
The image thumbnail class.
$alt
The image thumbnail alt text.
$title
The image thumbnail title.
add_filter('maxgalleria_image_tiles_thumb', 'image_tiles_thumb', 10, 5);
function image_tiles_thumb($html, $image, $image_class, $alt, $title) {
}
Defined in maxgalleria-hooks.php.
Used in image-tiles.php.