Yoast\WP\SEO\Expiring_Store\Application
Expiring_Store::delete
Deletes a value scoped to the current blog.
Метод класса: Expiring_Store{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Expiring_Store = new Expiring_Store(); $Expiring_Store->delete( $key ): void;
- $key(строка) (обязательный)
- The key.
Код Expiring_Store::delete() Expiring Store::delete Yoast 27.7
public function delete( string $key ): void {
$this->repository->delete( $this->prefix_for_blog( $key ) );
}