wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



signup_nonce_fields › WordPress Function

Seit
Veraltetn/v
signup_nonce_fields ( Keine Parameter )
Definiert in:
Codex:
Changelog:
  • MU

Adds a nonce field to the signup page.



Quellcode

function signup_nonce_fields() {
	$id = mt_rand();
	echo "<input type='hidden' name='signup_form_id' value='{$id}' />";
	wp_nonce_field( 'signup_form_' . $id, '_signup_form', false );
}