使用输出注销链接wc_logout_url()
它将是非编码的,没有确认。确认是一种安全措施。
您还可以尝试将以下内容添加到函数中。php或插件:
// Logout without confirmation.
function wpse_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\', \'wpse_bypass_logout_confirmation\' );