WPu查询示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPu查询示例相关的知识,希望对你有一定的参考价值。
For more parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
<?php // Start WP_Query for only the ID's from above $first_query = new WP_Query( 'post_type' => 'page', 'category_name' => 'stuff', ) ); ?> <?php while($first_query->have_posts()) : $first_query->the_post(); ?> <?php the_title(); ?> <?php endwhile; ?> <?php wp_reset_postdata(); ?>
以上是关于WPu查询示例的主要内容,如果未能解决你的问题,请参考以下文章