maxgalleria_image_tiles_thumb

Description

This filter returns the image thumbnail for the gallery when displayed with the Image Tiles template.

Usage

add_filter('maxgalleria_image_tiles_thumb', 'image_tiles_thumb', 10, 5);

Parameters

$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.

Example

add_filter('maxgalleria_image_tiles_thumb', 'image_tiles_thumb', 10, 5);

function image_tiles_thumb($html, $image, $image_class, $alt, $title) {
}

Source Files

Defined in maxgalleria-hooks.php.

Used in image-tiles.php.