Notifications
Clear all
Topic starter
18/04/2020 5:33 pm
Hi there, how can I add a comment title/wording to wpDiscuz
18/04/2020 6:24 pm
Hi @magdalena,
You can use one of the following hooks:
- comment_main_form_after_head
- comment_form_top
- wpdiscuz_comment_form_top
- comment_form_before
- wpdiscuz_comment_form_before
The example is provided below:
add_action("comment_main_form_after_head", function () {
echo "Custom Message";
});
The code should be added in your active theme functions.php file.
Topic starter
18/04/2020 6:29 pm
@astghik Super! Thank you for your help!