把这个放进你的functions.php 文件:
function wpse_131562_redirect() {
if (
! is_user_logged_in()
&& (is_woocommerce() || is_cart() || is_checkout())
) {
// feel free to customize the following line to suit your needs
wp_redirect(home_url());
exit;
}
}
add_action(\'template_redirect\', \'wpse_131562_redirect\');
What does it do?我们检查未登录的用户是否想查看WooCommerce页面,并将其重定向到我们的主页。