如何在wordpress中查看是回复评论还是评论post?

How to check is it reply to comment or comment to post in wordpress?

我想在 wordpress 中为 commentreply 提供两种不同的评论形式。

我的主要不同之处在于提交按钮。 如果是评论,将提交按钮显示为 发表评论 my Form should be like this if comment

如果是回复,将提交按钮显示为留下回复 my From should be like this if reply

提前致谢...

在您的 comment_form 中添加:

'label_submit' => isset($_GET['replytocom']) ? __('Leave a reply', 'wpse') : __('Leave a comment', 'wpse'),