我想在wordpress中为评论和回复提供两种不同的评论表单。
我的主要形式是提交按钮。 如果是评论,请将提交按钮显示为发表评论 my Form should be like this if comment
如果是回复,请将提交按钮显示为发表回复 my From should be like this if reply
提前致谢...
答案 0 :(得分:0)
在comment_form
内,添加:
'label_submit' => isset($_GET['replytocom']) ? __('Leave a reply', 'wpse') : __('Leave a comment', 'wpse'),