Word Pressのコメント欄

Word Pressのコメント欄を表示させる
single.phpに

<?php comments_template(); ?>

comment.phpに

<?php if( comments_open() ){ ?>
	<div id="comments">
		<?php if( have_comments() ){ ?>
		<ol id="comments-list">
			<?php wp_list_comments(); ?>
		</ol>
		<?php } ?>
		<?php comment_form(); ?>
	</div>
<?php } ?>

でCSSを適当に

#comments{
max-width:700px;
margin:20px auto;
}

勉強させてもらったサイト