mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
12 lines
325 B
Text
12 lines
325 B
Text
<?php
|
|
function wc_bypass_logout_confirmation() {
|
|
global $wp;
|
|
|
|
if ( isset( $wp->query_vars['customer-logout'] ) ) {
|
|
wp_redirect( str_replace( '&', '&', wp_logout_url( wc_get_page_permalink( 'myaccount' ) ) ) );
|
|
exit;
|
|
}
|
|
}
|
|
|
|
add_action( 'template_redirect', 'wc_bypass_logout_confirmation' );
|
|
?>
|