0

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

4

1 回答 1

3

事实证明,我从另一个 WordPress 实例导入的一些(但不是全部)帖子的评论被禁用了。一旦我启用评论,这些功能就可以正常工作。

于 2012-05-28T20:36:59.837 回答