Topic: Include news by ID
Hey Everybody, I'm trying to include the news on my website. I have a slider with 6 slides. I'm trying to always include the 6 latest news into each slide. The rest should go to an archive on another page. I Only need the Title and the Text of each news post. How would I do that?
To Illustrate what I'm going :
<div id="SLIDE 1">
<p>
<?php echo ("$TILTE_NEWEST") ?>
</p>
<p>
<?php echo ("$TEXT_NEWEST") ?>
</p>
</div>
<div id="SLIDE 2">
<p>
<?php echo ("$TILTE_2ND_NEWEST") ?>
</p>
<p>
<?php echo ("$TEXT_2ND_NEWEST") ?>
</p>
</div>
THANK YOU SO MUCH GUYS