Modify podcast feed slug in Seriously Simple Podcasting

Modify podcast feed slug in Seriously Simple Podcasting on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'ssp_feed_slug', 'ssp_modify_podcast_feed_slug' );
function ssp_modify_podcast_feed_slug ( $slug ) {
  return 'new-slug';
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.