Created
July 27, 2019 17:33
-
-
Save TheCraigHewitt/c424c4bff4199c397d4e24eae3f1f8af to your computer and use it in GitHub Desktop.
Seriously Simple Podcasting: Modify podcast feed 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_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