WPDKUser::getTransient PHP Метод

getTransient() публичный Метод

If the transient does not exist or does not have a value, then the return value will be false.
С версии: 1.4.8
public getTransient ( string $transient ) : mixed
$transient string Transient name. Expected to not be SQL-escaped
Результат mixed Value of transient
    public function getTransient($transient)
    {
        if (!empty($this->ID)) {
            return self::getTransientWithUser($transient, $this->ID);
        }
    }