Skip to content

Instantly share code, notes, and snippets.

@TheCraigHewitt
Created July 27, 2019 17:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TheCraigHewitt/0ec6ff8a81715547c7173e6a9df43ba2 to your computer and use it in GitHub Desktop.
Save TheCraigHewitt/0ec6ff8a81715547c7173e6a9df43ba2 to your computer and use it in GitHub Desktop.
Seriously Simple Podcasting: Modify podcast archive slug
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