Make Your RSS Feed Link Auto Discoverable!
Some Web Browsers ( for ex. IE,Firefox,Opera) can auto discover RSS Links which are optimized. So you can use this option for your website. And users can submit your RSS feeds easily. You have to change your theme’s header.php and paste this two codes to into the file.
Firstly you should make a backup of header.php It is in your theme’s folder. After backup, you can change this file.
Here is the code;
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> Comments RSS Feed" href="<?php bloginfo('comments_rss2_url'); ?>" />
You can paste this two code to header.php. If your theme have first code you can just use second code. After that save your header.php and send it to your server.
If you use IE8 you can see RSS image turn to orange and if you use Firefox you can see adding a RSS button to your address bar. When you click to this button you can see there are 2 RSS feed link into it.
That’s All. Have a nice day.
