我有这样的评论表 Screenshot
我想将姓名/电子邮件输入移到注释文本区域上方。 我试图在Google上找到它,但没有发现任何有用的东西。 我正在使用WordPress 5.1版
请提出实现目标的方法
答案 0 :(得分:1)
您可以这样做
function comment_override(){
$comment_args = array('title_reply' => 'Got Something To Say:',
'fields' => apply_filters('comment_form_default_fields', array(
'author' => '<p class="comment-form-author">' . '<label for="author">' . __('Your Good Name') . '</label> ' . ($req ? '<span>*</span>' : '') .
'<input id="author" name="author" type="text" value="' . esc_attr($commenter['comment_author']) . '" size="30"' . $aria_req . ' /></p>',
'email' => '<p class="comment-form-email">' .
'<label for="email">' . __('Your Email Please') . '</label> ' .
($req ? '<span>*</span>' : '') .
'<input id="email" name="email" type="text" value="' . esc_attr($commenter['comment_author_email']) . '" size="30"' . $aria_req . ' />' . '</p>',
'url' => '')),
'comment_field' => '<p>' .
'<label for="comment">' . __('Let us know what you have to say:') . '</label>' .
'<textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea>' .
'</p>',
'comment_notes_after' => '',
);
return comment_form($comment_args);
}
remove_action('comments_template');
add_action('comments_template', 'comment_override');