Topic: Multiple Templates on the same page
Good evening,
I am having an issue incorporating multiple news feed on the same page. The issue is I need both feeds to have different templates.
Ex.
Both of these "feeds" are on the same page:
<?php
$number=5;
$template="Custom";
include("/blogger/show_news.php");
?>
<?php
$number=5;
$template="NewResults";
include("/blogger/show_news.php");
?>
But the issue is the second feed is referring back to the first template, "Custom", where I want it to refer to "NewResults".
Was wondering if this is possible to fix?
Thanks regardless