• On my blog: https://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: https://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: https://feeds.feedburner.com/lilwaynehq");
    exit;
    }
    
    do_feed();
    
    ?>

    Can someone please help me fix this, thanks alot ??

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Feedburner link not showing up’ is closed to new replies.