Yoast_Notification::refresh_nonce()publicYoast 1.0

Make sure the nonce is up to date.

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

Хуков нет.

Возвращает

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

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

$Yoast_Notification = new Yoast_Notification();
$Yoast_Notification->refresh_nonce();

Код Yoast_Notification::refresh_nonce() Yoast 24.0

public function refresh_nonce() {
	if ( $this->options['id'] ) {
		$this->options['nonce'] = wp_create_nonce( $this->options['id'] );
	}
}