Skip to content

Instantly share code, notes, and snippets.

@TheCraigHewitt
Created July 27, 2019 17:33
Embed
What would you like to do?
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