我正在尝试自定义的输出代码
<?php comment_form(); ?>
 此时,“提交”按钮输出以下内容:
<p class="form-submit">
    <input name="submit" type="submit" id="submit" value="Post Comment">
    <input type="hidden" name="comment_post_ID" value="486" id="comment_post_ID">
    <input type="hidden" name="comment_parent" id="comment_parent" value="0">
</p>
 我希望它输出以下内容:
<div class="panel-footer">
    <input name="submit" type="submit" id="submit" value="Post Comment">
    <input type="hidden" name="comment_post_ID" value="486" id="comment_post_ID">
    <input type="hidden" name="comment_parent" id="comment_parent" value="0">
</div>
 我现在可以使用css或jquery来实现这一点。但任何使用wordpress函数的解决方案都将非常好。
非常感谢您的任何建议!:)