Dear Chris,
How to display the heading one of particular Category only ?
Regards Ohm
Create a new template, name it Headlines. In the News section of that template, use the following code
<span class="headline">{title}</span>
When displaying your news, use the following code
<?php
$template = 'Headlines';
$cat[] = "Sports";
include 'news/index.php';
?>
This will use the headlines template thus only showing the title of each article and will only display articles that are assigned to the Sports category.
