Hi @priyaqb,
There are a few ways of achieving it:
1. Changing your Permalinks structure – go to Settings -> Permalinks -> Custom structure, provide /something/%postname%/
, and save settings. Be aware – in this case, all your post types will have the /simething
prefix, not only episodes.
2. Using SSP filters – put the following code snippet in your functions.php
file:
add_filter('ssp_register_post_type_args', function($args){
$args['rewrite']['slug'] = '/something/' . SSP_CPT_PODCAST;
return $args;
});
Then go to Permalinks settings, and click save.
3. Using different plugins for it, for example, Custom Post Type Permalinks.
Hope this helps.