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