Linux 软件免费装
Banner图

Direct Logout

开发者 Finalmarco
更新时间 2021年2月22日 16:17
捐献地址: 去捐款
PHP版本: 7.0 及以上
WordPress版本: 5.6
版权: GPLv2 or later
版权网址: 版权信息

标签

woocommerce logout

下载

详情介绍:

This plugin remove the “Are you sure you want to log out?” confirmation page once an user logout. After the logout the plugin lets you choose from redirect:

屏幕截图:

  • Control Panel

升级注意事项:

None

常见问题:

I don't want to install a plugin for this simple function, do you have a hook?

Of course, you can put the following code inside your function.php page, it will redirect ot the login page `<?php function finalmarco_logout() { global $wp; if ( isset( $wp->query_vars['customer-logout'] ) ) { wp_redirect( str_replace( '&', '&', wp_logout_url( wc_get_page_permalink( 'myaccount' ) ) ) ); header("Refresh:0"); exit; } } add_action( 'template_redirect', 'finalmarco_logout' ); ?>`

更新日志:

None