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 に答える