게시물 ID로 댓글을받는 방법은 무엇입니까?


9

특정 카테고리 내의 모든 게시물을 나열하는이 사용자 정의 게시물 쿼리가 있습니다. 예를 들어 나는 이것을 가지고있다 :

$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 개의 댓글 만 표시합니다.

이를위한 내장 함수가 있습니까?

답변:


10

사용할 수 있습니다 get_comments. 기능 참조 / 댓글 얻기

$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;
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.