Brands and redirecting archives
-
I noticed the new brands option for products. this is great, however, my shop has product categories based on the brands. So I need to redirect the brands archive pages to the respective product category pages. How could I do this? I know I can set them all to 404 with
add_action(‘template_redirect’, function () {
if ( is_tax(‘product_brand’ ) {
wp_redirect( home_url( ‘/404’ ) );
exit;
}
});but I still want the links for the brands, just not to their archives but to their respective product category.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.