Yoast\WP\SEO\Expiring_Store\Application

Expiring_Store::persist_if_absent_for_multisitepublicYoast 1.0

Persists a value shared across the entire multisite network, only if the key does not already exist.

Метод класса: Expiring_Store{}

Хуков нет.

Возвращает

true|false. True if the value was inserted, false if the key already exists.

Использование

$Expiring_Store = new Expiring_Store();
$Expiring_Store->persist_if_absent_for_multisite( $key, $value, $ttl_in_seconds ): bool;
$key(строка) (обязательный)
The key.
$value(scalar|array<string|int|float|true|false|массив|null>|JsonSerializable) (обязательный)
The value to store.
$ttl_in_seconds(int) (обязательный)
The time-to-live in seconds.

Код Expiring_Store::persist_if_absent_for_multisite() Yoast 27.7

public function persist_if_absent_for_multisite( string $key, $value, int $ttl_in_seconds ): bool {
	return $this->do_persist_if_absent( $key, $value, $ttl_in_seconds );
}