WP_Query::lazyload_comment_meta()publicWP 4.4.0

Deprecated from version 4.5.0. It is no longer supported and can be removed in future releases. See wp_lazyload_comment_meta().

Lazyloads comment meta for comments in the loop.

Method of the class: WP_Query{}

No Hooks.

Return

Mixed.

Usage

global $wp_query;
$wp_query->lazyload_comment_meta( $check, $comment_id );
$check(mixed) (required)
-
$comment_id(int) (required)
-

Changelog

Since 4.4.0 Introduced.
Deprecated since 4.5.0 See wp_lazyload_comment_meta().

WP_Query::lazyload_comment_meta() code WP 6.4.3

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