query_postsの複数条件指定の仕方
2015年6月18日query_postsで複数条件をまとめて指定したい場合は、
arrayにして入れてあげればよい。
<?php query_posts(array( "post_type"=>"staff", "posts_per_page"=>"3" )); ?></pre> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> ぐるぐるぐる <?php endwhile; ?> <?php endif; ?> <?php wp_reset_query(); ?>