eventorganiser_save_event
(action)
Triggered after an event has been updated.
Parameters
int
|
$post_id |
The ID of the event
|
Example Usage
add_action( 'eventorganiser_save_event', 'my_callback_function', 10, 1 );
function my_callback_function( $post_id ){
//Do something
};