wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_explain_nonce › WordPress Function

Od2.0.4
Przestarzały3.4.1
wp_explain_nonce ( $action )
Parametry:
  • (string) $action Nonce action.
    Wymagane: Tak
Zobacz:
Powrót:
  • (string) Are you sure message.
Zdefiniowane na:
Codex:

Retrieve nonce action "Are you sure" message.

Deprecated in 3.4.1 and 3.5.0. Backported to 3.3.3.


Źródło

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