Quote:
Originally Posted by nexcom28
I hate messing with themes, I tried adding the code you suggested so it looked like
Code:
<?php query_posts($query_string."&orderby=rand") if (have_posts()) : while (have_posts()) : the_post(); ?>
I took out the 6 posts bit.
Unfortunately it generated a syntax parse error.
Think I will just leave it.
|
You forgot a ; after the query_posts argument... Use the following:
Code:
<?php query_posts($query_string."&orderby=rand"); if (have_posts()) : while (have_posts()) : the_post(); ?>