I have it currently so that my post title links to an external URL using the following code in my index.php file.
<h1><a href="<?php echo get_post_meta($post->ID, 'external-link', true); ?>"><?php the_title(); ?></a> <a href="<?php the_permalink() ?>"><small>★</small></a></</h1>
I’d like to have the title of my RSS feed to do the same.
I’m using the FeedBurner FeedSmith plugin (Ver. 2.3.1) if that makes any difference.
Oooo! Unfortunately you have to start editing some of wordpress’ files.
In wp_includes there are several files that have a prefix of feed, they are basically just ‘feed templates’, and in there you’ll find the loop. then all you have to do is just replace:
with
for each one, there are some with an ending of -comments, these are for any comments attached to your posts, can choose whether to bother doing these or not, i was extremely lazy and only bothered to edit rss2 hehe.
Anyway, the really annoying bit about this is you wont be able to update your wordpress without these files being overwritten, to overcome that simply duplicate a copy into your theme folder and add this into your functions.php file
And must add a function for eachand every one of the feeds, annoying eh?
I hope that helps 🙂