wp_explain_nonce( string $action ): string

This function has been deprecated. Use wp_nonce_ays() instead.

Retrieve nonce action “Are you sure” message.

Description

Deprecated in 3.4.1 and 3.5.0. Backported to 3.3.3.

See also

Parameters

$actionstringrequired
Nonce action.

Return

string Are you sure message.

Source

function wp_explain_nonce( $action ) {
	_deprecated_function( __FUNCTION__, '3.4.1', 'wp_nonce_ays()' );
	return __( 'Are you sure you want to do this?' );
}

Changelog

VersionDescription
2.0.4Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.