我现在正在搜索一段时间以找到解决我的问题的方法,该函数get_current_user_id()在连接到woocommerce_login_redirect. 在登录重定向之后应该总是有一个用户 ID,或者我在这里弄错了什么?
在我的 function.php 文件中,我有以下代码:
add_action( 'woocommerce_login_redirect', 'ffaces_register_customer' );
add_filter( 'woocommerce_registration_redirect', 'ffaces_register_customer' );
function ffaces_register_customer( $user ) {
$customerid = get_current_user_id();
if ( $customerid == 0 ) {
$redirection_url = get_permalink( wc_get_page_id( 'myaccount' ) );
return $redirection_url;
exit();
}
// more code working with $customerid
return home_url("my-account/my-projects");
exit();
}
慕哥6287543
HUH函数