【WordPress】記事にコメント機能を付ける
WordPress
■「comments.php」の作成
<?php if( comments_open() ){ ?>
<div id="comments">
<h2>コメント</h2>
<?php if( have_comments() ){ ?>
<ol id="comments-list">
<?php wp_list_comments(); ?>
</ol>
<?php } ?>
<?php comment_form(); ?>
</div>
<?php } ?>■「single.php」に「comment.php」を読み込ませる
<?php comments_template(); ?>