maxgalleria_before_remove_single_video_from_gallery

Description

This action runs right before an individual video is removed from a gallery.

Usage

add_action('maxgalleria_before_remove_single_video_from_gallery', 'before_remove_single_video_from_gallery', 10, 1);

Parameters

$video_post
The video post object.

Example

add_action('maxgalleria_before_remove_single_video_from_gallery', 'before_remove_single_video_from_gallery', 10, 1);

function before_remove_single_video_from_gallery($video_post) {
}

Source Files

Defined in maxgalleria-hooks.php.

Used in maxgalleria-video-gallery.php.