Description
A filter that allows modification of any parameters of event post type, while it’s registration.
Usage
function custom_em_register_event_post_type($args) { // your code here return $args; } add_filter('em_register_event_post_type', 'custom_em_register_event_post_type', 10, 1);
Parameters
- $args | array – an array of all available parameters, identical to the register_post_type() $args parameters
Location
events-maker.php
Leave a Reply