mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
https://support.castos.com/article/130-filter-reference https://gist.github.com/TheCraigHewitt/c424c4bff4199c397d4e24eae3f1f8af
4 lines
136 B
Text
4 lines
136 B
Text
add_filter( 'ssp_feed_slug', 'ssp_modify_podcast_feed_slug' );
|
|
function ssp_modify_podcast_feed_slug ( $slug ) {
|
|
return 'new-slug';
|
|
}
|