在这个电子商务中,没有必要单个产品页面,有没有办法将这些链接重定向到我的主页?
我有3个产品页面/个人盒子/季度盒子/学期盒子。
我试过这样的事情:
function redirect_to_home() {
if(!is_admin() && is_page('/product')) {
wp_redirect(home_url());
exit();
}
}
add_action('template_redirect', 'redirect_to_home');
答案 0 :(得分:2)
尝试以下功能:
add_action( 'template_redirect', 'product_redirection_to_home', 100 );
function product_redirection_to_home() {
if ( ! is_product() ) return; // Only for single product pages.
wp_redirect( home_url() ); // redirect home.
exit();
}
代码放在活动子主题(或活动主题)的function.php文件中。