自定义页面模板上的评论表单

时间:2018-08-22 作者:JoeBe

我已经创建了一个自定义页面模板,但我不知道如何将WordPress评论表单添加到我的<body> 标签我试图在我的template.php 文件,但表单不会显示:

<?php $comments_args = array(\'label_submit\' => __( \'Send\', \'textdomain\' ), \'title_reply\' => __( \'Write a Reply or Comment\', \'textdomain\' ), \'comment_notes_after\' => \'\',
        \'comment_field\' => \'<p class="comment-form-comment"><label for="comment">\' . _x( \'Comment\', \'noun\' ) . \'</label><br /><textarea id="comment" name="comment" aria-required="true"></textarea></p>\',
);

comment_form( $comments_args ); ?>
我使用的是儿童主题,共有217个主题。

1 个回复
最合适的回答,由SO网友:Sagar Nasit 整理而成

如果你想显示默认的Wordpress评论表单,那么你需要调用comments_template() 在模板中。确保comment_status 应该是open 对于要显示评论表单的特定帖子。

<?php
comments_template();
?>
在此处阅读更多信息https://developer.wordpress.org/reference/functions/comments_template/

结束

相关推荐