Quote:
Originally Posted by rnmcd
Can you post the plugin?
|
I have posted the plugin in the previous post.
Quote:
Instead, I create a plugin that references the PHP files. I create a Plug-in for global_start with these contents:
ob_start();
require("rssaus.php");
$rssaus = ob_get_contents();
ob_end_clean();
|
For multiple RSS feeds simply repeat this block of code and change the name of the PHP file. For example:
Quote:
ob_start();
require("rssaus.php");
$rssaus = ob_get_contents();
ob_end_clean();
ob_start();
require("rsseng.php");
$rsseng = ob_get_contents();
ob_end_clean();
ob_start();
require("rssind.php");
$rssind = ob_get_contents();
ob_end_clean();
ob_start();
require("rssnz.php");
$rssnz = ob_get_contents();
ob_end_clean();
|
Please download the following free scripts and read the documentation on how to create your custom RSS PHP and HTML files:
http://www.feedforall.com/download.htm
Script 1:
RSS2HTML - free PHP script for dipslaying RSS feeds using html
(You don't have to register at feedforall.com to download this free file.)
Description:
http://www.feedforall.com/free-php-script.htm
Documentation:
http://www.feedforall.com/php-documentation.htm
Script 2:
rss2html Cache - PHP script for displaying only current items in an RSS feed.
(You are required to register at feedforall.com to download this free file)
Description:
http://www.feedforall.com/rss-cache.htm
This should work for 3.6.8.