Topic: Open news from homepage to another page of the website
Hello everyone
I'll try to explain my situation :
I have installed Cutenews 2.0.2 on my website and I have around five categories (technology, cinema,...)
What I am trying to do is to display on my homepage the five latest news (the newest one with short story and other four as headlines beside). That's for each category of my site.
Now what I would like to do and I am not able is to open the news full story in another page of the website instead of open on the homepage.
Here is what I tried but it doesn't work :
<div class="article1" align="center">
<?php
$number = 1;
$template = "homepage";
$category = "1";
$static = TRUE;
include("Blog/show_news.php");
?>
</div>
<div class="article2" align="right">
<?php
$number = 4;
$start_from = 1;
$template = "homepage-miniatures";
$category = "1";
$reverse = TRUE;
$static = TRUE;
include("Blog/show_news.php");
?>
</div>
Any help will be appreciate
Thank you very much!