* Download the attachment of that post:
http://www.websitebaker2.org/forum/index.php?action=dlattach;topic=14656.0;attach=4753* Extract the files into the News module folder (./modules/news)
* To show 10 posts, call the rss10.php like this:
<link rel="alternate" type="application/rss+xml" title="Hier steht Euer Text - News (10)" href="<?php echo WB_URL; ?>/modules/news/rss10.php?page_id=XX" />
Replace the
title with some text and the XX after
page_id= with the ID of the page where the news module is included (the News page to get the news from)
The second file, rss.php, is to show an unlimited feed. You will have to do some changes:
*
Line 64:
<atom:link href="http://<?php echo $_SERVER['SERVER_NAME']; ?>/modules/news/rss.php?page_id=XX" rel="self" type="application/rss+xml" />
Replace XX with the page ID of the News page.
*
Line 79:
<url><?php echo TEMPLATE_DIR; ?>/images/feedlogo.gif</url>
If the feedlogo.gif does not reside in the images subfolder, set the correct URL here.
*
Line 80:
<title><?php echo WEBSITE_TITLE; ?> - <?php echo PAGE_TITLE; ?> (Alle)</title>
If you have more than one feed on a page, you may wish to have different headings here.

* Include the feed like this:
<link rel="alternate" type="application/rss+xml" title="Hier steht Euer Text - News (Alle)" href="<?php echo WB_URL; ?>/modules/news/rss.php?page_id=XX" />
As described above, set the title and the page ID to the values you wish to use.