maxgalleria_before_exclude_single_image_from_gallery

Description

This action runs right before an individual image is excluded from a gallery.

Usage

add_action('maxgalleria_before_exclude_single_image_from_gallery', 'before_exclude_single_image_from_gallery', 10, 1);

Parameters

$image_post
The image post object.

Example

add_action('maxgalleria_before_exclude_single_image_from_gallery', 'before_exclude_single_image_from_gallery', 10, 1);

function before_exclude_single_image_from_gallery($image_post) {
}

Source Files

Defined in maxgalleria-hooks.php.

Used in maxgalleria-image-gallery.php.