WP_Query::lazyload_term_meta()
Deprecated from version 4.5.0. It is no longer supported and can be removed in future releases. See wp_queue_posts_for_term_meta_lazyload().
Lazyload term meta for posts in the loop.
{} It's a method of the class: WP_Query{}
No Hooks.
Return
Mixed
.
Usage
global $wp_query; $wp_query->lazyload_term_meta( $check, $term_id );
- $check(mixed) (required)
- -
- $term_id(int) (required)
- -
Changelog
Since 4.4.0 | Introduced. | |
Deprecated Since 4.5.0 | See wp_queue_posts_for_term_meta_lazyload(). |
Code of WP_Query::lazyload_term_meta() WP Query::lazyload term meta WP 6.0
public function lazyload_term_meta( $check, $term_id ) { _deprecated_function( __METHOD__, '4.5.0' ); return $check; }