eventorganiser_breaking_occurrence_exclude_meta
(filter)
Filters an array of keys which should be ignored when breaking an occurrence.
When breaking an occurrence from an event a new event is made for
that occurrence. Meta data from the original event is copied across,
unless its meta key exists in the filtered array.
Parameters
array
|
$ignore_meta |
Array of meta keys to be ignored
|
Example Usage
add_filter( 'eventorganiser_breaking_occurrence_exclude_meta', 'my_callback_function', 10, 1 );
function my_callback_function( $ignore_meta ){
//Change first value and return it
return $ignore_meta
};