Yoast\WP\SEO\MyYoast_Client\User_Interface

Management_Route::clear_refresh_throttleprivateYoast 1.0

Clears the refresh throttle marker so the next status read hits the server.

Called after any endpoint that changes the registration (connect, re-sync, disconnect): the throttle exists only to spare MyYoast's rate limit on unchanged status, so a deliberate state change must invalidate it.

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

Хуков нет.

Возвращает

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

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

// private - только в коде основоного (родительского) класса
$result = $this->clear_refresh_throttle(): void;

Код Management_Route::clear_refresh_throttle() Yoast 28.3

private function clear_refresh_throttle(): void {
	\delete_transient( $this->get_refresh_throttle_key() );
}