Created
March 10, 2021 11:42
-
-
Save mklasen/f9a1b341b066c00b00d0ef678173ccbe to your computer and use it in GitHub Desktop.
Customize the slug for the event taxonomy in Sympose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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