Access: Member
Total Posts: 107
Joined: 2009-11-28
User has extensively tried to call only a particular category but has been unable to get execution. The follow code was given in support thread.
<?php
$template = "headlines";
$cat[] = "cat1";
include './news/index.php';
?>
the following code can also be created by reading admin help screen / readme.txt
<?php
$template = "headlines";
$cat[] = "category1";
include './news/index.php';
?>