Walker_Comment::filter_comment_text
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.
Returns
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() Walker Comment::filter comment text code WP 7.0.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;
}