wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_logout_url › WordPress Function
Seit2.7.0
Veraltetn/v
› wp_logout_url ( $redirect = '' )
| Parameter: |
|
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: |
Retrieves the logout URL.
Returns the URL that allows the user to log out of the site.Quellcode
function wp_logout_url( $redirect = '' ) {
$args = array();
if ( ! empty( $redirect ) ) {
$args['redirect_to'] = urlencode( $redirect );
}
$logout_url = add_query_arg( $args, site_url( 'wp-login.php?action=logout', 'login' ) );
$logout_url = wp_nonce_url( $logout_url, 'log-out' );
/**
* Filters the logout URL.
*
* @since 2.8.0
*
* @param string $logout_url The HTML-encoded logout URL.
* @param string $redirect Path to redirect to on logout.
*/
return apply_filters( 'logout_url', $logout_url, $redirect );
}