WPLib::cache_delete PHP Method

cache_delete() static public method

static public cache_delete ( string $key, string $group = '' )
$key string
$group string
    static function cache_delete($key, $group = '')
    {
        if (self::cache_exists($key, $group)) {
            wp_cache_delete($key, static::_filter_group($group));
        }
    }