eventorganiser_event_meta_list
(filter)
Filters mark-up for the event details list.
The event details list is just a simple list containig details pertaining
to the event (venue, categories, tags) etc.
Parameters
array
|
$html |
The generated mark-up
|
int
|
$event_id |
Post ID of the event
|
Example Usage
add_filter( 'eventorganiser_event_meta_list', 'my_callback_function', 10, 2 );
function my_callback_function( $html, $event_id ){
//Change first value and return it
return $html
};