eventorganiser_event_metabox_notice
(filter)
Filters the notice at the top of the event details metabox.
Parameters
string
|
$notices |
The message text.
|
\WP_Post
|
$post |
The corresponding event (post).
|
Example Usage
add_filter( 'eventorganiser_event_metabox_notice', 'my_callback_function', 10, 2 );
function my_callback_function( $notices, $post ){
//Change first value and return it
return $notices
};