WP_Query::lazyload_term_meta
Deprecated since 4.5.0. It is no longer supported and may be removed in future releases. See wp_queue_posts_for_term_meta_lazyload().
Lazyloads term meta for posts in the loop.
Method of the class: WP_Query{}
No Hooks.
Returns
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(). |
WP_Query::lazyload_term_meta() WP Query::lazyload term meta code WP 6.9
public function lazyload_term_meta( $check, $term_id ) {
_deprecated_function( __METHOD__, '4.5.0' );
return $check;
}