W3cubDocs

/WordPress

WP_Metadata_Lazyloader::lazyload_term_meta( mixed $check )

Lazy-loads term meta for queued terms.

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.

Parameters

$check

(mixed) (Required) The $check param passed from the 'get_term_metadata' hook.

Return

(mixed) In order not to short-circuit get_metadata(). Generally, this is null, but it could be another value if filtered by a plugin.

Source

File: wp-includes/class-wp-metadata-lazyloader.php

public function lazyload_term_meta( $check ) {
		if ( ! empty( $this->pending_objects['term'] ) ) {
			update_termmeta_cache( array_keys( $this->pending_objects['term'] ) );

			// No need to run again for this set of terms.
			$this->reset_queue( 'term' );
		}

		return $check;
	}

Changelog

Version Description
4.5.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_metadata_lazyloader/lazyload_term_meta