Yoast_Notification::get_nonce()publicYoast 1.0

Retrieve nonce identifier.

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

Хуков нет.

Возвращает

Строку|null. Nonce for this Notification.

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

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

Код Yoast_Notification::get_nonce() Yoast 22.4

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

	return $this->options['nonce'];
}