您可以使用post\\u link过滤器重写这些选定产品的永久链接。
function redirect_products( $url, $post ) {
if ( in_array($post->ID, array(1,2,3,4) ) { //1,2,3,4 = your product IDs
$url = get_permalink(123); //the ID of the redirect page
}
return $url;
}
add_filter( \'post_link\', \'redirect_products\', 10, 2 );