WpOrg\Requests\Cookie

Jar::offsetUnset()publicWP 1.0ReturnTypeWillChange

Unset the given header

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$Jar = new Jar();
$Jar->offsetUnset( $offset );
$offset(строка) (обязательный)
The key for the item to unset.

Код Jar::offsetUnset() WP 6.6.2

public function offsetUnset($offset) {
	unset($this->cookies[$offset]);
}