woocommerce_after_deserializing_{$this->object_type}_from_cache

woocommerce_after_deserializing_{$this->object_type}_from_cache

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.7.5.1

apply_filters('woocommerce_after_deserializing_{$this->object_type}_from_cache') is found 1 times:

  • /src/Caching/ObjectCache.php line 279
    		 * @param array|object $object The object after being deserialized.
    		 * @param array $data The serialized object data that was retrieved from the cache engine.
    		 * @returns array|object The actual deserialized object data that will be returned by 'get'.
    		 */
    		return apply_filters( "woocommerce_after_deserializing_{$this->object_type}_from_cache", $object, $data, $id );
    	}
    
    	/**
    	 * Remove an object from the cache.
    	 *
    	 * @param int|string $id The id of the object to remove.