Skip to content

Instantly share code, notes, and snippets.

@mklasen
Created March 10, 2021 11:42
Show Gist options
  • Save mklasen/f9a1b341b066c00b00d0ef678173ccbe to your computer and use it in GitHub Desktop.
Save mklasen/f9a1b341b066c00b00d0ef678173ccbe to your computer and use it in GitHub Desktop.
Customize the slug for the event taxonomy in Sympose
<?php
/* Customize the slug for the event taxonomy in Sympose */
add_filter('sympose_customize_event_taxonomy', 'c7_sympose_alter_event_slug');
function c7_sympose_alter_event_slug($args) {
$args['rewrite'] = array(
'slug' => 'sympose-event',
);
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment