Hey
I have 3 boxes that i have at the bottom of my home page, i want to display in each of them a wordpress post.
Each of these posts will be under a category special1, special2, special3, how do i do this?
I have tried
<div class="special_box">
<?php query_posts('tag=special3');?>
</div>
But this does not work
Any ideas? I tried this, but it replaced all of my other content with just the post, which is not what i want
This is outside the wordpress loop:
<?php
$special1 = query_posts('category_name=special1'); ?>
This is inside:
<div class="special_box">
<?php echo $special1 ;?>
</div>