Skip to content

Instantly share code, notes, and snippets.

@hlashbrooke
Last active February 16, 2020 00:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hlashbrooke/9eeedca2e02387defc18 to your computer and use it in GitHub Desktop.
Save hlashbrooke/9eeedca2e02387defc18 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