我正在尝试定制评论表单,以便可以清楚地编辑标签并设置样式。
<?php comment_form( $args = array(
\'id_form\' => \'commentform\', // that\'s the wordpress default value! delete it or edit it ;)
\'id_submit\' => \'commentsubmit\',
\'title_reply\' => __( \'Leave a Reply\' ), // that\'s the wordpress default value! delete it or edit it ;)
\'title_reply_to\' => __( \'Leave a Reply to %s\' ), // that\'s the wordpress default value! delete it or edit it ;)
\'cancel_reply_link\' => __( \'Cancel Reply\' ), // that\'s the wordpress default value! delete it or edit it ;)
\'label_submit\' => __( \'Post Comment\' ), // that\'s the wordpress default value! delete it or edit it ;)
\'comment_field\' => \'<p><textarea placeholder="Start typing..." id="comment" class="form-control" name="comment" cols="45" rows="8" aria-required="true"></textarea></p>\',
\'comment_notes_after\' => \'<p>\' .
__( \'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:\' ) .
\'</p><div class="">\' . allowed_tags() . \'</div>\'
));
?>
如何更改它,以便针对适当的字段,例如Name
, Email
和Website
? 我找不到这样做的好教程。任何帮助或指导都将不胜感激。