Mam to niestandardowe zapytanie do wpisu, które zawiera listę wszystkich postów w określonej kategorii. Na przykład mam to:
$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;
Więc dla tej strony chciałbym pokazać listę postów, ale także towarzyszące im komentarze. Pokazuję tylko maksymalnie 2 komentarze dla każdego postu.
Czy jest do tego wbudowana funkcja?
Odpowiedź
Możesz użyć get_comments
. Odniesienie do funkcji / pobierz komentarze
$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;