Set random Home but Search is random
-
Hi,
I have problem with search result. It’s random following the index.php code.
Here the frontpage (home):<div class="smart_content" align="center"> <?php query_posts(array('orderby' => 'rand')); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php include TEMPLATEPATH.'/product.php'; ?> <?php endwhile; ?><div class="clear"></div> <?php { wp_pagenavi(); } ?> <?php else : ?> <h2>Not Found</h2> <div class="bodycontent">Sorry, but you are looking for something that isn't here.</div> <?php endif; ?> </div>
The search result is random.
I’ve input
<?php if (is_search()) { $posts = query_posts( $query_string . '&orderby=title&order=asc' ); } ?>
before the random query but not work.How I split the query for the “home” and “search result” ?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Set random Home but Search is random’ is closed to new replies.