Yoast_Notification::get_nonce
Retrieve nonce identifier.
Метод класса: Yoast_Notification{}
Хуков нет.
Возвращает
Строку|null. Nonce for this Notification.
Использование
$Yoast_Notification = new Yoast_Notification(); $Yoast_Notification->get_nonce();
Код Yoast_Notification::get_nonce() Yoast Notification::get nonce Yoast 26.7
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'];
}