使用 WP Query() 物件
建立 WP_Query
物件的單獨例項很簡單:
$query_args = array(
'post_type' => 'post',
'post_per_page' => 10
);
$my_query = new WP_Query($query_args);
if( $my_query->have_posts() ):
while( $my_query->have_posts() ): $my_query->the_post();
//My custom query loop
endwhile;
endif;
wp_reset_postdata();
請注意,你需要根據規範構建查詢引數陣列。有關更多詳細資訊,請檢視 WP_Query codex 頁面 。