add_filter('eventon_event_slug','my_function',10,1);
function my_function($array){
	$array['with_front'] = false; //Should the permalink structure be prepended with the front base
	$array['pages'] = true; //Should the permalink structure provide for pagination
	$array['feeds'] = true; //Should a feed permalink structure be built for this post type
	return $array;
}
Event slug filter
Code created on: 2026-07-06 07:56:15