Skip to content

Instantly share code, notes, and snippets.

View Fred-FLQ's full-sized avatar
🎯
Focusing on vanilla JS

Fred - FLQ Fred-FLQ

🎯
Focusing on vanilla JS
View GitHub Profile
@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';
}