wp_lazyload_term_meta() – Queue term meta for lazy-loading.

You appear to be a bot. Output may be restricted

Description

Queue term meta for lazy-loading.

Usage

wp_lazyload_term_meta( $term_ids );

Parameters

$term_ids
( array ) required – List of term IDs.

Returns

void

Source

File name: wordpress/wp-includes/taxonomy.php
Lines:

1 to 7 of 7
function wp_lazyload_term_meta( array $term_ids ) {
  if ( empty( $term_ids ) ) {
    return;
  }
  $lazyloader = wp_metadata_lazyloader();
  $lazyloader->queue_objects( 'term', $term_ids );
}
 

 View on GitHub View on Trac