これが私のsingle.php
:
<?php get_header(); ?>
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
the_content();
comments_template();
endwhile;
endif;
?>
<?php get_footer(); ?>
そして、これが私のcomments.php
:
<h2>Comments</h2>
<?php
wp_list_comments();
comment_form(array('title_reply'=>'Leave a Comment',
'comment_notes_before'=>'',
'comment_notes_after'=>''));
?>
wp_list_comments()
は正常に動作していますが、comment_form()
何も返されません。コメントフォームを表示するにはどうすればよいですか?