wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_generate_user_request_key › WordPress Function

Since4.9.6
Deprecatedn/a
wp_generate_user_request_key ( $request_id )
Parameters:
  • (int) $request_id Request ID.
    Required: Yes
Returns:
  • (string) Confirmation key.
Defined at:
Codex:

Returns a confirmation key for a user action and stores the hashed version for future comparison.



Source

function wp_generate_user_request_key( $request_id ) {
	// Generate something random for a confirmation key.
	$key = wp_generate_password( 20, false );

	// Save the key, hashed.
	wp_update_post(
		array(
			'ID'            => $request_id,
			'post_status'   => 'request-pending',
			'post_password' => wp_fast_hash( $key ),
		)
	);

	return $key;
}