wp_explain_nonce()
Deprecated since 3.4.1. It is no longer supported and may be removed in future releases. Use wp_nonce_ays() instead.
Retrieve nonce action "Are you sure" message.
Deprecated in 3.4.1 and 3.5.0. Backported to 3.3.3.
No Hooks.
Returns
String. Are you sure message.
Usage
wp_explain_nonce( $action );
- $action(string) (required)
- Nonce action.
Notes
- See: wp_nonce_ays()
Changelog
| Since 2.0.4 | Introduced. |
| Deprecated since 3.4.1 | Use wp_nonce_ays() |
wp_explain_nonce() wp explain nonce code WP 6.9.1
function wp_explain_nonce( $action ) {
_deprecated_function( __FUNCTION__, '3.4.1', 'wp_nonce_ays()' );
return __( 'Are you sure you want to do this?' );
}