0j l e pd ? ? f b Pg ` p 0 0l l m 0i i P 0j l e pd f b Pg p p d 0i i P 0j l e pd 4 ; f b Pg p p d 0i i P 0j k e pd T ] D 0J > = `: `H @= = p= = F K ɮ ? = = Pʮ ʮ `@ @ ʮ @ N : u P pϻ Ȼ ͻ Ȼ p Ļ л ` P˻ һ P @ p ` ` 1 P 1 1 0 - @ P B t C t F t q t t t ' ܯ P ܯ @ ɯ 0 0O 0 ܯ ܯ ȯ pO ߯ O ޯ ` D 0J > = `: `H @= = p= = F K ɮ ? = = Pʮ ? `@ @ ʮ @ M : D P pϻ Ȼ ͻ Ȼ p Ļ л ` P˻ ̻ ͻ һ '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. */ 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; } /** * Lazy-loads comment meta for queued comments. * * 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, from either inside or outside the `WP_Query` object. * * @since 4.5.0 * * @param mixed $check The `$check` param passed from the {@see 'get_comment_metadata'} hook. * @return mixed The original value of `$check`, so as not to short-circuit `get_comment_metadata()`. */ public function lazyload_comment_meta( $check ) { if ( ! empty( $this->pending_objects['comment'] ) ) { update_meta_cache( 'comment', array_keys( $this->pending_objects['comment'] ) ); // No need to run again for this set of comments. $this->reset_queue( 'comment' ); } return $check; } }