Skip to content

Instantly share code, notes, and snippets.

@hlashbrooke
hlashbrooke / functions.php
Last active January 21, 2023 11:13
Seriously Simple Podcasting: Modify podcast archive slug
add_filter( 'ssp_archive_slug', 'ssp_modify_podcast_archive_slug' );
function ssp_modify_podcast_archive_slug ( $slug ) {
return 'new-slug';
}