1 strood Mar 14, 2007 19:03
3 edb Mar 15, 2007 00:16
AFAIK this won't work on a .html page because php is processed on the server and html is passed to the browser. Therefore the bits that make the feeds happen won't happen if they're not on a .php page.
You would want to copy the source code from your php-generated blog page and paste it into your .html page, assuming what you're looking for is a way to say "here are my feed links" on a .html page.
You could have php or another scripting language create a HTML file for you, but that would be superfluous if you could do with a php file that reads in your browser like a HTML file does. So ask yourself the question: is it worth the trouble to get a HTML file?
If you click on the rss link in your blog you get the RSS page, probably that's what you want.
To generate a php file, all you have to do is strip the _main.php file of a skin down to the RSS part:
If you leave the links out (delete the <a href=" part) then you have direct access to the RSS feed.
That's about all you have to do.
Good luck