wpseek.com
WordPress开发者和主题制作者的搜索引擎



signup_nonce_fields › WordPress Function

Since
已弃用n/a
signup_nonce_fields ( 没有参数 )
定义在:
文档:
Change Log:
  • MU

Adds a nonce field to the signup page.



源码

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 );
}