This action runs right after gallery images are reordered.
add_action('maxgalleria_after_reorder_images_in_gallery', 'after_reorder_images_in_gallery', 10, 2); $image_post_orders
The current menu orders of the images being reordered.
$image_post_ids
The IDs of the image post objects.
add_action('maxgalleria_after_reorder_images_in_gallery', 'after_reorder_images_in_gallery', 10, 2);
function after_reorder_images_in_gallery($image_post_orders, $image_post_ids) {
}
Defined in maxgalleria-hooks.php.
Used in maxgalleria-image-gallery.php.