zohaib87
10/7/2015 - 1:56 AM

Display comment list.php

<?php
//Gather comments for a specific page/post
$comments = get_comments(array(
    'post_id' => get_the_ID(),
    'status' => 'approve' //Change this to the type of comments to be displayed
));
             
wp_list_comments( array(
  'walker'            => null,
  'max_depth'         => '',
  'style'             => 'ol',
  'callback'          => null,
  'end-callback'      => null,
  'type'              => 'all',
  'page'              => '',
  'per_page'          => '5',
  'avatar_size'       => 70,
  'reverse_top_level' => null,
  'reverse_children'  => '',
  'format'            => current_theme_supports( 'html5', 'comment-list' ) ? 'html5' : 'xhtml',
  'short_ping'        => false,
  'echo'              => true,
), $comments );
?>