Search Form to Work With Custom Query
-
[ Moderator note: title adjusted, please refrain from using help, urgent, emergency, asap, etc. in topic titles. ]
My search query works without my custom query: Normal while:
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?>
But if I want it to work with my custom query: Custom while:
<?php if ($movies->have_posts()) : ?> <?php while ($movies->have_posts()) : $movies->the_post(); ?>
It doesn’t search, just shows all posts
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Search Form to Work With Custom Query’ is closed to new replies.