当类别中只有一个产品时,我试图跳过类别存档页面并直接进入单个产品页面。
这是我到目前为止的代码(不工作):
add_action( 'template_redirect', 'woo_redirect_single_product_cat', 10 );
function woo_redirect_single_product_cat() {
global $wp_query, $wp;;
if ( is_post_type_archive( 'product' ) && 1 === $wp_query->found_posts ) {
$product = wc_get_product($wp_query->post->ID);
if ( $product && $product->is_visible() ) {
wp_safe_redirect( get_permalink( $product->id ), 302 );
exit;
}
}
}
Run Code Online (Sandbox Code Playgroud)
此代码以 Woocommerce 中的单个搜索重定向为模型:
谢谢!