Walker_Comment::filter_comment_text()publicWP 5.4.2

Filters the comment text.

Removes links from the pending comment's text if the commenter did not consent to the comment cookies.

Method of the class: Walker_Comment{}

No Hooks.

Return

String. Filtered text of the current comment.

Usage

$Walker_Comment = new Walker_Comment();
$Walker_Comment->filter_comment_text( $comment_text, $comment );
$comment_text(string) (required)
Text of the current comment.
$comment(WP_Comment|null) (required)
The comment object. Null if not found.

Changelog

Since 5.4.2 Introduced.

Walker_Comment::filter_comment_text() code WP 6.5.2

public function filter_comment_text( $comment_text, $comment ) {
	$commenter          = wp_get_current_commenter();
	$show_pending_links = ! empty( $commenter['comment_author'] );

	if ( $comment && '0' == $comment->comment_approved && ! $show_pending_links ) {
		$comment_text = wp_kses( $comment_text, array() );
	}

	return $comment_text;
}