query_posts with search
-
I’ve been trying to make query_posts work with search but with no luck. Adding it displays all posts in the search results even those without matches. Can somebody point me to the right direction?
<?php query_posts('author=1'); ?> <?php while ( have_posts() ) : the_post(); ?> <div class="posttitle"><a href="<?php the_permalink(); ?>"> <?php the_title(); ?></a></div> <div class="postbody"><?php the_excerpt(); wp_reset_query();?></div> <?php endwhile; //Reset Query wp_reset_query();?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘query_posts with search’ is closed to new replies.