wp-includes/class-wp-metadata-lazyloader.php:120Resets lazy-load queue for a given object type.
$object_typestringvoid|WP_Error public function reset_queue( $object_type ) { if ( ! isset( $this->settings[ $object_type ] ) ) { return new WP_Error( 'invalid_object_type', __( 'Invalid object type.' ) ); } $type_settings = $this->settings[ $object_type ]; $this->pending_objects[ $object_type ] = array(); remove_filter( $type_settings['filter'], $type_settings['callback'] ); }Introduced in 4.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-includes/class-wp-metadata-lazyloader.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.