maxgalleria_before_include_bulk_images_in_gallery

Description

This action runs right before bulk images are included in a gallery.

Usage

add_action('maxgalleria_before_include_bulk_images_in_gallery', 'before_include_bulk_images_in_gallery', 10, 1);

Parameters

$image_post_ids
The IDs of the image post objects.

Example

add_action('maxgalleria_before_include_bulk_images_in_gallery', 'before_include_bulk_images_in_gallery', 10, 1);

function before_include_bulk_images_in_gallery($image_post_ids) {
}

Source Files

Defined in maxgalleria-hooks.php.

Used in maxgalleria-image-gallery.php.