James,
Does the title of the default RSS Feed change when you deactivate podPress?
Does it change when you deactivate the other plugins too?
Is there no way to just write 'Rebel Magazine' somewhere directly into the code?
That is no good idea. Because you would need to take care of that matter every time you upgrade WP.
But you could try to add a filter which filters some elements of all Feeds of your blog.
see http://pastebin.com/57sdUzZz
This is a little plugin which filters the title of the feed with the slug name "podcast".
If you want to change the titles of all feeds of your blog then you could change the lines:
if ( 'podcast' === get_query_var('feed') ) {
// The new Feed title:
return 'My Podcast';
} else {
return $content;
}
to
// The new Feed title:
return 'My Podcast';
Place your title between the single quotation marks: e.g. return 'Rebel Magazine';.
Put these lines of code with a simple text editor (like Notepad) in a PHP file and store this file in the plugins folder of your blog e.g. /wp-content/plugins/feedfilter/feedfilter.php .
Afterwards the plugin will appear between the other plugins at the plugins page of your blog and you can activate it.
If the filter plugins seems not the affect the feed titles as expected then try to modify the last parameter of the line add_filter('bloginfo_rss', 'pff_modify_bloginfo', 10, 2);. Change to 2 to 1 or to 10.
Try the plugin also while the other plugins are deactivated.
In every case it is a good idea to find out what is modifying your feed titles.
If deactivating all plugins does not change the situation then it is probably pattern which is hard-coded somehow somewhere. But I guess that it is one of the other plugins (because podPress can only modify the titles of the additional and the category feeds like the one with the slug name podcast).
BTW: I have noticed that the feed with the slug name "podcast" (http://www.wearerebels.com/feed/podcast/) is now deactivated in your blog. The link does not lead to the feed anymore. I suggest that you activate this feed again. Save also the Permalink settings afterwards. Isn't it the Feed which you have registered at the iTunes Store?
Regards,
Tim