您可以尝试使用template_redirect
动作挂钩,检查当前页面是否为产品页面,然后可以将用户重定向到您的店铺页面。
将此代码粘贴到函数中。php
add_action(\'template_redirect\',\'custom_shop_page_redirect\');
function custom_shop_page_redirect(){
if (class_exists(\'WooCommerce\')){
if(is_product()){
wp_redirect(home_url(\'/shop/\'));
exit();
}
}
return;
}
我还没有测试过,但希望它对你有用。