我已经创建了一个自定义页面模板,但我不知道如何将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个主题。