comment_form()不起作用

时间:2012-05-28 18:14:44

标签: php html forms wordpress comments

这是我的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()没有返回任何内容。如何显示评论表单?

1 个答案:

答案 0 :(得分:3)

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