天想改一改评论表单,一时找不到改的地方,搜了一下才知道是comment_form()在控制,
不用说,网上也是有很复杂的方法,教你添加自定义字段 等等,目前制作的主题还不需要那些东西,
最简单的方法是直接把comment_form()的内容替换显示变成可操作的代码编辑状态。

一般有评论表单的主题都可以在commnet.php模板底部找到这个表单函数

<?php comment_form(); ?>

只需要将其替换为下面的代码即可:

<?php comment_form(
    array(
        'title_reply'=>'各抒己见',
        'comment_notes_before' => '<p class="comment-notes"></p>',                  
        'fields' => array(                  
        'author' => '<p class="comment-form-author"><label for="author" class="inlojvicon inlojvicon-user comment-reader-text"></label><input type="text" aria-required="true" size="30" value="'.$comment_author.'" name="author" id="author" placeholder="姓名"></p>',
        'email' => '<p class="comment-form-email"><label for="email" class="inlojvicon inlojvicon-envelope comment-reader-text"></label><input type="text" aria-required="true" size="30" value="'.$comment_author_email.'" name="email" id="email" placeholder="邮箱"></p>',
        'url' => '<p class="comment-form-url"><label for="url" class="inlojvicon inlojvicon-home comment-reader-text"></label><input type="text" size="30" value="'.$comment_author_url.'" name="url" id="url" placeholder="网站或微博"></p>'
        ),
        'comment_field' => '<p class="comment-form-comment"><label for="comment"></label><br /><textarea id="comment" name="comment" aria-required="true" placeholder="说点什么吧…"></textarea></p>'
            )       
); ?>

然后修改一下样式即可。

comment_form

具体详见wp官方文档:http://codex.wordpress.org/Function_Reference/comment_form