假设您从以下内容开始:
$custom_query_args = array(
\'cat\' => 10,
\'post_per_page\' => 5
);
$custom_query = new WP_Query($custom_query_args);
然后,要回答第一个问题,您可以通过以下方式查看返回的内容(用于开发/调试):
var_dump( $custom_query );
要将查询输出为普通循环,只需使用
have_posts()
和
the_post()
查询类的成员函数:
// Start loop
if ( $custom_query->have_posts() ) : while ( $custom_query->have_posts() ) : $custom_query->the_post();
// Loop output goes here
// End loop
endwhile; endif;
// Restore $post data to the default query
wp_reset_postdata();