if you click on Appearance and then Editor in your Wordpress admin, you will then Main Index Template(index.php) on the right of the page. Click on that link and then edit the line of code below:
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://feed.affiliatemarketer.info/affiliatemarketerinfo" />
and replace with the code below and press update file:
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Comments Feed" href="<?php bloginfo('comments_rss2_url'); ?>" />
The current way it is coded shows his sites RSS feed and not yours.
0 comments:
Post a Comment