eventorganiser_event_properties
(filter)
Filters the settings used in `register_post_type()` for event post type.
Parameters
array
|
$args |
Settings passed to register_post_type() in the second argument.
|
Example Usage
add_filter( 'eventorganiser_event_properties', 'my_callback_function', 10, 1 );
function my_callback_function( $args ){
//Change first value and return it
return $args
};