Add HTML before the comments link in wpDiscuz

Add HTML before the comments link in wpDiscuz on child sites.

Snippet Type

Execute on Child Sites

Snippet

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

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.