$value set. The $value is serialized * by this function so can be of any type * * @param string $key Key of the data * @param string $value data */ public function set($key, $value) { wp_cache_set( $key, $value ) ; } /** * Removes the key/data pair for the given $key * * @param String $key */ public function delete($key) { wp_cache_delete( $key ); } }