Created
July 27, 2019 17:34
-
-
Save TheCraigHewitt/0ec6ff8a81715547c7173e6a9df43ba2 to your computer and use it in GitHub Desktop.
Seriously Simple Podcasting: Modify podcast archive slug
This file contains 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
add_filter( 'ssp_archive_slug', 'ssp_modify_podcast_archive_slug' ); | |
function ssp_modify_podcast_archive_slug ( $slug ) { | |
return 'new-slug'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment