在Woocommerce中,我使用以下代码自定义一些重定向。一切正常。
在菜单中使用?customer-logout=true
时,注销不起作用引起了问题,因为它已重定向到/dashboard/
页。
这是我的重定向代码:
add_action( 'parse_request', 'redirect_to_my_account_dashboard' );
function redirect_to_my_account_dashboard( $wp ) {
if ( is_user_logged_in() ) {
$allowed_endpoints = [ 'downloads', 'orders', 'edit-account', 'lost-password', 'reset-password', 'payment-methods', 'view-order', 'customer-logout' ];
if (
preg_match( '%^account(?:/([^/]+)|)/?$%', $wp->request, $m ) &&
( empty( $m[1] ) || ! in_array( $m[1], $allowed_endpoints ) )
) {
wp_redirect( '../dashboard/' );
exit;
}
}
}