Skip to content

Instantly share code, notes, and snippets.

@TheCraigHewitt
Created July 27, 2019 17:33
Show Gist options
  • Save TheCraigHewitt/c424c4bff4199c397d4e24eae3f1f8af to your computer and use it in GitHub Desktop.
Save TheCraigHewitt/c424c4bff4199c397d4e24eae3f1f8af to your computer and use it in GitHub Desktop.
Seriously Simple Podcasting: Modify podcast feed slug
add_filter( 'ssp_feed_slug', 'ssp_modify_podcast_feed_slug' );
function ssp_modify_podcast_feed_slug ( $slug ) {
return 'new-slug';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment