Code-Snippets-Functions/Execute a function on a child site/wpDiscuz/add-html-comment-before-link.txt

4 lines
153 B
Text

add_filter("wpdiscuz_before_comment_link", function ($html, $comment, $user, $currentUser) {
$html .= "Custom Message";
return $html;
}, 10, 4);