This hook can be used for displaying some HTML after “Read more” action.
Changelog
Added in version 7.0.4
Parameters
1. $content (type: string) - the content of the comment
2. $comment (type: WP_Comment object) - the object of the current comment
3. $args (type: array) - the arguments passed to walker
2. $comment (type: WP_Comment object) - the object of the current comment
3. $args (type: array) - the arguments passed to walker
Usage
add_filter("wpdiscuz_after_read_more", function ($content, $comment, $args) {
$content .= "Custom Text";
return $content;
}, 10, 3);