Title: WP_Query::lazyload_comment_meta
Published: December 9, 2015
Last modified: August 20, 2026

---

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

## In this article

 * [Parameters](https://developer.wordpress.org/reference/classes/wp_query/lazyload_comment_meta/?output_format=md#parameters)
 * [Return](https://developer.wordpress.org/reference/classes/wp_query/lazyload_comment_meta/?output_format=md#return)
 * [Source](https://developer.wordpress.org/reference/classes/wp_query/lazyload_comment_meta/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/classes/wp_query/lazyload_comment_meta/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/classes/wp_query/lazyload_comment_meta/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/classes/wp_query/lazyload_comment_meta/?output_format=md#wp--skip-link--target)

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

Lazyloads comment meta for comments in the loop.

## 󠀁[Parameters](https://developer.wordpress.org/reference/classes/wp_query/lazyload_comment_meta/?output_format=md#parameters)󠁿

 `$check`mixedrequired

`$comment_id`intrequired

## 󠀁[Return](https://developer.wordpress.org/reference/classes/wp_query/lazyload_comment_meta/?output_format=md#return)󠁿

 mixed

## 󠀁[Source](https://developer.wordpress.org/reference/classes/wp_query/lazyload_comment_meta/?output_format=md#source)󠁿

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

[View all references](https://developer.wordpress.org/reference/files/wp-includes/class-wp-query.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.1/src/wp-includes/class-wp-query.php#L5144)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.1/src/wp-includes/class-wp-query.php#L5144-L5147)

## 󠀁[Related](https://developer.wordpress.org/reference/classes/wp_query/lazyload_comment_meta/?output_format=md#related)󠁿

| Uses | Description | 
| [_deprecated_function()](https://developer.wordpress.org/reference/functions/_deprecated_function/)`wp-includes/functions.php` |

Marks a function as deprecated and inform when it has been used.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/classes/wp_query/lazyload_comment_meta/?output_format=md#changelog)󠁿

| Version | Description | 
| [4.5.0](https://developer.wordpress.org/reference/since/4.5.0/) | Deprecated. See [wp_lazyload_comment_meta()](https://developer.wordpress.org/reference/functions/wp_lazyload_comment_meta/) . | 
| [4.4.0](https://developer.wordpress.org/reference/since/4.4.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fclasses%2Fwp_query%2Flazyload_comment_meta%2F)
before being able to contribute a note or feedback.