如何定制WordPress评论提交按钮?

时间:2015-03-26 作者:Vishal Patil

我正在尝试自定义的输出代码

<?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函数的解决方案都将非常好。

非常感谢您的任何建议!:)

1 个回复
SO网友:andrewdcato

您可以通过传递$argscomment_form() 功能-您尝试过吗?

或者,您可以编写自定义注释模板文件,然后使用comments_template() 调用以在主题中显示它。此方法允许您完全控制任何字段的类型、类和ID,前提是您连接到适当的WordPress函数来处理注释提交。

结束

相关推荐