mc_mass_delete_locations - joedolson/my-calendar GitHub Wiki
Run when multiple locations are deleted.
Auto-generated Example
add_action(
'mc_mass_delete_locations',
function(
array $deleted,
array $failed
) {
// Your code here.
},
10,
2
);
Parameters
array$deletedArray of location IDs successfully deleted.array$failedArray of location IDs that were not successfully deleted.
Files
do_action( 'mc_mass_delete_locations', $deleted, $failed )