Let user edit his own comment

can I allow user to edit his own comment (without, username, url, or mail) on front-end. For example simple form on custom worpdress page with his comment and submit button.

Thank you all in advance!

1 Answer
1

You can add the following code in function.php

$subscriber= get_role('subscriber');
$subscriber->add_cap('edit_comment');

Meanwhile edit_comment is only supported in version 3.1 or newer

Or you can use this plugin link

Leave a Comment