您可以使用
(1)is_shop 外汇
(2)template_redirect 行动挂钩
(3)wp_safe_redirect 外汇
add_action(\'template_redirect\',\'ravs_shop_for_login_user\');
function ravs_shop_for_login_user(){
//check user in shop page and not login
if( is_shop() && ! is_user_logged_in() )
wp_safe_redirect( home_url() );// enter your url here where you want to redirect page if user on shop page and not registered
}
Note 粘贴此代码
functions.php
.当前访问者重定向到主页如果未注册,请在wp\\u safe\\u redirect fx中提供要用户重定向的任何url。