maxgalleria_image_showcase_thumb

Description

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

Usage

add_filter('maxgalleria_image_showcase_thumb', 'image_showcase_thumb', 10, 6);

Parameters

$html
The output for the image thumbnail.

$image
The image thumbnail object.

$image_class
The image thumbnail class.

$attachment_id
The attachment ID of the image.

$alt
The image thumbnail alt text.

$title
The image thumbnail title.

Example

add_filter('maxgalleria_image_showcase_thumb', 'image_showcase_thumb', 10, 6);

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

Source Files

Defined in maxgalleria-image-showcase-hooks.php.

Used in maxgalleria-image-showcase-template.php.