wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_nonce_url › WordPress Function

Seit2.0.4
Veraltetn/v
wp_nonce_url ( $actionurl, $action = -1, $name = '_wpnonce' )
Parameter: (3)
  • (string) $actionurl URL to add nonce action.
    Erforderlich: Ja
  • (int|string) $action Optional. Nonce action name. Default -1.
    Erforderlich: Nein
    Standard: -1
  • (string) $name Optional. Nonce name. Default '_wpnonce'.
    Erforderlich: Nein
    Standard: '_wpnonce'
Gibt zurück:
  • (string) Escaped URL with nonce action added.
Definiert in:
Codex:

Retrieves URL with nonce added to URL query.



Quellcode

function wp_nonce_url( $actionurl, $action = -1, $name = '_wpnonce' ) {
	$actionurl = str_replace( '&', '&', $actionurl );
	return esc_html( add_query_arg( $name, wp_create_nonce( $action ), $actionurl ) );
}