Description
This filter returns the image thumbnail for the gallery when displayed with the Video Showcase template.
Usage
add_filter('maxgalleria_video_showcase_thumb', 'video_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_video_showcase_thumb', 'video_showcase_thumb', 10, 6);
function video_showcase_thumb($html, $image, $image_class, $attachment_id, $alt, $title) {
}
Source Files
Defined in maxgalleria-video-showcase-hooks.php.
Used in maxgalleria-video-showcase-template.php.