maxgalleria_before_exclude_bulk_videos_from_gallery

Description

This action runs right before bulk videos are excluded from a gallery.

Usage

add_action('maxgalleria_before_exclude_bulk_videos_from_gallery', 'before_exclude_bulk_videos_from_gallery', 10, 1);

Parameters

$video_post_ids
The IDs of the video post objects.

Example

add_action('maxgalleria_before_exclude_bulk_videos_from_gallery', 'before_exclude_bulk_videos_from_gallery', 10, 1);

function before_exclude_bulk_videos_from_gallery($video_post_ids) {
}

Source Files

Defined in maxgalleria-hooks.php.

Used in maxgalleria-video-gallery.php.