maxgalleria_after_add_images_to_gallery

Description

This action runs right after images are added to a gallery.

Usage

add_action('maxgalleria_after_add_images_to_gallery', 'after_add_images_to_gallery', 10, 2);

Parameters

$gallery_id
The gallery ID.

$urls
The URLs of the images.

Example

add_action('maxgalleria_after_add_images_to_gallery', 'after_add_images_to_gallery', 10, 2);

function after_add_images_to_gallery($gallery_id, $urls) {
}

Source Files

Defined in maxgalleria-hooks.php.

Used in maxgalleria-image-gallery.php.