https://avada.tistory.com/2544
저 소스를 펑션에 추가하였더니 전체 댓글이 각 게시글에 나오더라구요
각게시글의 댓글만 보여지게 하고싶은데 저소스를 튜닝할수있을까요ㅠㅠ
/ 댓글이 많이 달린 글 표시하기 function wp_most_commented_posts() { // start output buffering ob_start(); ?> <ol class="most-commented"> <?php // WP_Query 실행 // 표시할 글 개수 $query = new WP_Query('orderby=comment_count&posts_per_page=10'); // 루프 시작 while ($query->have_posts()) : $query->the_post(); ?> <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> (<span class="wpb-comment-count"><?php comments_popup_link('댓글 없음', '1', '%'); ?></span>)</li> <?php endwhile; // 루프 종료 ?> </ol> <?php // 아웃풋 버퍼링 끄기 $output = ob_get_clean(); // 출력 반환 return $output; } // 숏코드 생성 add_shortcode('wp_most_commented', 'wp_most_commented_posts');
저 소스에서 어느부분을 수정해야 전체 댓글이 각 게시글에 안보여지고 그글의 댓글만 각각 나오게 가능한지 아시면 부탁드려요ㅠㅠ
안녕하세요~^^
댓글이 많이 달린 순서대로 표시를 하면서
게시글이 아닌 댓글만 표시하고 싶다는 게 어떤 내용인지
이해가 잘 되지 않습니다.
조금 더 자세히 남겨주시겠어요?
비회원으로 내용을 확인할 수 있는 링크도 남겨주시면
이해하는데 도움이 될 듯 합니다.
고맙습니다.