maxgalleria_gallery_widget_before_thumb_output

Description

This filter returns content right before the gallery thumbnail widget output.

Usage

add_filter('maxgalleria_gallery_widget_before_thumb_output', 'gallery_widget_before_thumb_output', 10, 2);

Parameters

$html
The content right before the gallery thumbnail widget output.

$gallery_id
The gallery ID.

Example

add_filter('maxgalleria_gallery_widget_before_thumb_output', 'gallery_widget_before_thumb_output', 10, 2);

function gallery_widget_before_thumb_output($html, $gallery_id) {
}

Source Files

Defined in maxgalleria-hooks.php.

Used in widgets/gallery-thumb-widget.php.