Lazy-loads comment meta for queued comments.
Description
This method is public so that it can be used as a filter callback. As a rule, there is no need to invoke it directly, from either inside or outside the WP_Query
object.
Parameters
$check
mixedrequired- The
$check
param passed from the 'get_comment_metadata' hook.
Source
public function lazyload_comment_meta( $check ) {
_deprecated_function( __METHOD__, '6.3.0', 'WP_Metadata_Lazyloader::lazyload_meta_callback' );
return $this->lazyload_meta_callback( $check, 0, '', false, 'comment' );
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.