WordPRESS comments.php

<?php
if ( post_password_required() ) {
return;
}
?>
<div id="comments" class="comments-area">
<?php
if(have_comments()):
?>
<h3 class="comments-title">『<?php the_title(); ?>』へのコメント</h3>
<ol class="commets-list">
<?php wp_list_comments('callback=my_list_comments'); //コメントの出力をカスタマイズする?>
</ol>
<?php
endif;
?>
<div id="comment-form-more">
<?php // コメント入力欄
comment_form();
?>
</div>
</div><!-- /comment area -->