このカスタム投稿クエリを使用して、特定のカテゴリ内のすべての投稿を一覧表示します。 たとえば、次のようになります。
$args = array("cat" => "home","post_type" => "post")); $post_obj = new WP_Query($args); while($post_obj->have_posts() ) : $post_obj->the_post(); // do stuff here endwhile;
このページでは、投稿のリストとそれに付随するコメントを表示します。 投稿ごとに最大2つのコメントのみを表示しています。
これを行うための組み込み関数はありますか?
回答
$args = array("cat" => "home","post_type" => "post")); $post_obj = new WP_Query($args); while($post_obj->have_posts() ) : $post_obj->the_post(); //display comments $comments = get_comments(array( "post_id" => $post->ID, "number" => "2" )); foreach($comments as $comment) { //format comments } endwhile;