help please putting rss on a site ?
help please putting rss on a site ?
I want to add rss feeds to my site I know nothing about it and much of what I read is contradictory , as usual, Iam using html for my site what would I need to do , step by step if poss, to add feeds , I also want the feeds to stick and not change as the news stories change , what would I need to do that ? cheers
-
major.tom
- Macho Business Donkey Wrestler
- Posts: 1970
- Joined: Sun Jan 21, 2007 7:07 pm
- Location: BC, Canada
I'm not an expert on RSS, but the following links might help:
https://www.pcstats.com/articleview.cfm? ... 771&page=5
https://www.cnet.com.au/software/interne ... 723,00.htm
Most blog software (eg. phpBB) will automatically generate RSS feed info for you. Though if your content is static, or your want the RSS to remain static, I'm not sure why you want to use RSS. It's intended to give quick access to dynamic content.
https://www.pcstats.com/articleview.cfm? ... 771&page=5
https://www.cnet.com.au/software/interne ... 723,00.htm
Most blog software (eg. phpBB) will automatically generate RSS feed info for you. Though if your content is static, or your want the RSS to remain static, I'm not sure why you want to use RSS. It's intended to give quick access to dynamic content.
I just made an RSS for the site here - it's pretty simple really. Here's what I did.
1. Edited the header code of the page by adding this into the <head>. This makes the browser look to the index.rss file for info. As this site is phpbb based I had to edit the 'overall_header.tpl' file in templates/bluetabs folder, but you'll probably have to edit your html pages individually.
<link rel="alternate" type="application/rss+xml"
title="Couchtripper Feed" href="/index.rss">
I made the rss file by ripping off someone else's and just editing it to suit. It all seems to work now. If you save this file you can see how it works - https://couchtripper.com/index.rss I just add in new additions to the <rdf:Seq> section as required, then add descriptions in order, so the first thing seen will go to the first description, and the second to the second etc.
1. Edited the header code of the page by adding this into the <head>. This makes the browser look to the index.rss file for info. As this site is phpbb based I had to edit the 'overall_header.tpl' file in templates/bluetabs folder, but you'll probably have to edit your html pages individually.
<link rel="alternate" type="application/rss+xml"
title="Couchtripper Feed" href="/index.rss">
I made the rss file by ripping off someone else's and just editing it to suit. It all seems to work now. If you save this file you can see how it works - https://couchtripper.com/index.rss I just add in new additions to the <rdf:Seq> section as required, then add descriptions in order, so the first thing seen will go to the first description, and the second to the second etc.