如何检查是回复评论还是评论在wordpress中发布


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

我想在wordpress中为注释回复提供两种不同的注释形式。

我的主要不同形式是提交按钮。如果是评论,则将提交按钮显示为留下评论如果评论,我的表格应该是这样的

如果是回复,则将提交按钮显示为留下回复如果回复,我的发件人应该是这样的

提前感谢。。。

comment_form中,添加以下内容:

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