How-to and Troubleshooting
5
Posts
2
Users
0
Reactions
747
Views
Feb 20, 2022 5:29 am
I can't change the comment author name with wpdiscuz_comment_author.
Do you know the cause?
Version 7.3.11
4 Replies
Feb 21, 2022 9:24 am
Hello
Write to function.php
add_filter ("wpdiscuz_comment_author", function ($ authorName, $ comment) {
$ authorName = "Boss";
return $ authorName;
},10,2);
It doesn't change.
Feb 22, 2022 10:15 am
solved.
thank you.