Hi, I added code to pop blue to make the front page show only posts with the category 'frontpage'
The code I used: <?php if (is_home() )
{
query_posts('category_name=frontpage');
}
?>
Now its showing my one post categorized as frontpage, but it is showing it twice. I have tried everything I can think of to stop this. Any ideas?
