Feedburner link not showing up
-
On my blog: http://www.lilwaynehq.com/blog
I was wondering why at the top, where it says subscribe, it doesn’t come up with my feedburner link and instead it comes up with: http://lilwaynehq.com/blog/?feed=rss2
But I changed the wp-feed.php file from this code:
<?php
if (empty($doing_rss)) {
$doing_rss = 1;
require(dirname(__FILE__) . ‘/wp-blog-header.php’);
}do_feed();
?>
to this code:
<?php
if( $wp_query->query ==’feed=feed’ ){
header(“Location: http://feeds.feedburner.com/lilwaynehq”);
exit;
}do_feed();
?>
Can someone please help me fix this, thanks alot :)
-
Sounds like you’re self-hosted so you are in the wrong forum. Head over to http://wordpress.org/support
-
- The topic ‘Feedburner link not showing up’ is closed to new replies.