WP_Query::lazyload_comment_meta( mixed $check, int $comment_id ): mixed

In this article

This method has been deprecated. See wp_lazyload_comment_meta() instead.

Lazyloads comment meta for comments in the loop.

Parameters

$checkmixedrequired
$comment_idintrequired

Return

mixed

Source

public function lazyload_comment_meta( $check, $comment_id ) {
	_deprecated_function( __METHOD__, '4.5.0' );
	return $check;
}

Changelog

VersionDescription
4.5.0See wp_lazyload_comment_meta() .
4.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.