这是我的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()
什么也没返回。如何让评论表单出现?