[ Index ] |
PHP Cross Reference of WordPress |
[Source view] [Print] [Project Stats]
Meta API: WP_Metadata_Lazyloader class
File Size: | 170 lines (5 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
WP_Metadata_Lazyloader:: (5 methods):
__construct()
queue_objects()
reset_queue()
lazyload_term_meta()
lazyload_comment_meta()
Class: WP_Metadata_Lazyloader - X-Ref
Core class used for lazy-loading object metadata.__construct() X-Ref |
Constructor. since: 4.5.0 |
queue_objects( $object_type, $object_ids ) X-Ref |
Adds objects to the metadata lazy-load queue. param: string $object_type Type of object whose meta is to be lazy-loaded. Accepts 'term' or 'comment'. param: array $object_ids Array of object IDs. return: void|WP_Error WP_Error on failure. since: 4.5.0 |
reset_queue( $object_type ) X-Ref |
Resets lazy-load queue for a given object type. param: string $object_type Object type. Accepts 'comment' or 'term'. return: void|WP_Error WP_Error on failure. since: 4.5.0 |
lazyload_term_meta( $check ) X-Ref |
Lazy-loads term meta for queued terms. 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. param: mixed $check 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 since: 4.5.0 |
lazyload_comment_meta( $check ) X-Ref |
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. 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()`. since: 4.5.0 |
Generated: Sun Dec 22 01:00:02 2024 | Cross-referenced by PHPXref 0.7.1 |