サーチ…


前書き

WP_Queryは、投稿、ページ、カスタム投稿の種類を問い合わせます。特定の投稿とページ、またはカスタム投稿タイプのリストが表示されます。 WP_Queryを使用すると、条件に基づいてデータベースから投稿を取り出すことができます。

最新の10件の記事を取得

$args = array(
    'post_type'=>'post',
    'posts_per_page' =>'10'
);
$latest_posts_query = new WP_Query( $args );
if($latest_posts_query->have_posts()) :
while ( $latest_posts_query-> have_posts()) : $latest_posts_query->the_post();
//Get post details here
endwhile;
endif;


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow