The next podPress version will have a setting for this. But until than you could add a further code snippet to the functions.php of the theme:
add_filter('bloginfo_rss', 'pff_modify_bloginfo', 10, 2);
function pff_modify_bloginfo($content, $feedelementname) {
// This filter can filter the Feed title, the URL and the description
Switch ($feedelementname) {
case 'name' : // Feed name
// If it is the feed of the posts of the custom post type with the slug name my_custom_post_type then
if ( 'my_custom_post_type' === get_query_var('post_type') ) {
// remove the ">> ..." part of the title
add_filter('wp_title_rss', 'podPress_customfeedtitleonly');
// and set the new feed name:
return 'My Podcast';
} else {
return $content;
}
break;
default :
return $content;
break;
}
}
You need to replace my_custom_post_type with the slug name of your custom post type.
The function podPress_customfeedtitleonly is a further filter function and looks like:
function podPress_customfeedtitleonly($input) {
return '';
}
It returns nothing and removes the ">> CUSTOM TAXONOMY >> CUSTOM TAXONOMY NAME" part. Don't add this function while podPress is active!
The function is part podPress and a further function with the same name would lead to an error.