brinsknaps
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS feed set-up problemHi Kate,
I was having the same issue until I added the tags esmi suggested above. Specifically: <link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
Although I changed mine to href=”http://www.mywebsite.com/feed” Once I did this, google reader was able to pick up the feed properly.
You da bomb esmi!!!
Forum: Themes and Templates
In reply to: Set /feed path to custom feed?Thanks for whoever read this. I was able to achieve what I wanted by registering my custom feed with feedburner then using .htaccess rule to redirect to my feedburner feed: http://perishablepress.com/press/2008/03/25/redirect-wordpress-feeds-to-feedburner-via-htaccess-redux/
Peace ouuuusiiiiiiiiidddde!
Forum: Themes and Templates
In reply to: Set /feed path to custom feed?Thanks for the response esmi. I’ve read through all of this which was fine, but the problem I’m having is that I would like the /feed path to default to my custom feed now. I was able to figure out how to get /feed/custom to show my custom feed, but it would be much more helpful if I could get /feed to show the contents of /feed/custom. The reason I’ve had to create a custom feed was to get custom fields to display.
I’ve found that I could possibly include my custom feed as a feed template in ‘default-filters.php’ via : add_action( ‘do_feed_my_custom’, ‘do_feed_my_custom’, 10, 1 ); and register the custom feed template… but I’d rather not hack the internals. Thus, I created a plugin that allowed me to get /feed/custom. Anyways, that’s just some background info.
But yeah, any more help would be much appreciated. Thanks.