Is it possible to use
$items = new WP_Query( $query_args );
with
<?php if(have_posts()): ?>
<?php while (have_posts()) : the_post(); ?>
without changing the loop to be
<?php while ($items->have_posts()) : $items->the_post();
Thanks.
|
http://codex.wordpress.org/Function_Reference/wp_reset_postdata |
|||
|
|