我正在寻找一种在php中检查产品属性归档页面上是否存在的方法。我需要将这些存档页面的所有链接重定向到商店页面。
我要检查类别页面上的内容,但不确定是否有is_product_attribute
function template_category_template_redirect(){
if( is_product_category())
{
wp_redirect( site_url('/trailers/') );
die;
}
}
add_action( 'template_redirect','template_category_template_redirect' );