How to add a Rss feed to my blog
-
Hi, can somebody tell me, how I can add a RSS-button, on which the user can add a feed for my blog?
-
There’s a widget called “RSS” which you can put in your sidebar.
yourwordpressinstallation/wp-admin/widgets.phpOkay thanks!! But how can I now find out a functionable rss url?
https://example.com/wp-rss2.php (replaced with my domain) doesn’t work…/feed will do in most cases, but I suppose that hovering over the icon will give the url at the bottom of your screen?
It also doesn’t work with https://example.com/feed, unfortunately…
And the icon cannot be hovered, since there is no icon in my blog – I suppose, that this won’t be displayed until I enter a functionable and correct URL in the RSS widget settings.?
Feeds are so baked into WP that I can’t even to cut them out. I don’t know if it could be a theme issue, but I think not.
I my case I offer a feed for one category, just by using /category/categoryname/feed and even that works……….Yes I read it too like this, but in my blog it doesn’t work.
And I could cut them out – and my theme is “compatible” with feeds… -.-I realize this is about 5 months late to the party but I discovered through trial and error that the default https://example.com/?feed=rss worked for me on my blog. Might work for you as well.
I’ll tag on another answer, albeit months after the original question.
yoursite.com/feed/
only works if you have Pretty Permalinks turned on. Go into your WP-admin > Settings > PermalinksYou really don’t need an RSS icon in your sidebar anymore. Major browsers display an RSS logo in the URL address bar automatically now, if the webpage offers feeds. Most people who “know about using RSS” will look in the browser to see if there’s a Feed for your site. Those over-sized, gaudy, honking RSS logos in the sidebar are so 2007. It’s going out of style.
One more tip, if you want to ADD MORE FEEDS, then put them in your theme’s header.php like this:
<link rel="alternate" type="application/rss+xml" title="RSS 2.0 Feed for Posts from my site (the main feed)" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3 - <?php bloginfo('name'); ?> " href="<?php bloginfo('atom_url'); ?>" /> <link rel="alternate" type="application/rss+xml" title="Comments Feed - for all the comments on this site" href="<?php bloginfo('comments_rss2_url'); ?>" />
(I recommend using that whole block of code, it will show-off 3 feeds of RSS2, Atom, and your Comments feed. Read it to see what the 3 lines do, and modify as you wish)
You can even stick Feedburner feeds, RSSmix feeds, Twitter feeds, Podcast feed, etc. into your header like that. Then each reader will get the options of what to subscribe to.
Its very easy to display an RSS feed in your blogs template for the simple instructions go to…
https://www.computer-fix.net/how-to/display-an-rss-feed-in-wordpress-without-plugins/
Please help a first day beginner! I’m trying to understand plugins and widgets. I don’t have an rss feed icon on my blog, so that means I first need to add a rss feed plugin? Then what do I do. My template is very difficult to figure out.
Thanks for all your help. This is really difficult for a beginner.@carlasm
If you’re a beginner, I would recommend spend your time getting to know the backend WP-Admin interface, and writing some initial content (posts and pages). WP automatically makes RSS for you, you already have it. You don’t need to change anything. Some people want to put an extra RSS button in your sidebar to make it more noticeable, but this is not important for a beginner’s site. You already have the functionality available to any RSS savvy readers who discover your site anyway, even if you do not have the little icon in your sidebar. You probably don’t need a plugin.The RSS button is already present in your theme. But if not, you can add this function in your themes sidebar or footer page to display the RSS button:
https://www.rahulsonar.stpwebhosting.com/RSS.txt
(This function varies for different themes, so make sure which one is working for you)Does this automatically generate the XML code, or is that something you still have to do yourself?
Yes, you still have to generate the XML code. You can use the Google XML site map plugin for the same..
And sorry for the image dude, I have deleted that….
Thanks for the reply. I just installed the Google XML site map plugin. I’ve tried fooling around with some RSS feeds, even set myself up on feedburner, but I don’t see the RSS icon showing up in my WordPress installation even though I have the Widget installed. I have 2.7.1 running and it is pointing to the correct URL for my RSS feed as well.
- The topic ‘How to add a Rss feed to my blog’ is closed to new replies.