mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
4 lines
153 B
Text
4 lines
153 B
Text
add_filter("wpdiscuz_before_comment_link", function ($html, $comment, $user, $currentUser) {
|
|
$html .= "Custom Message";
|
|
return $html;
|
|
}, 10, 4);
|