有没有一种方法可以通过php检查产品属性存档页面上的内容?

时间:2019-07-08 13:30:45

标签: wordpress woocommerce

我正在寻找一种在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' );

0 个答案:

没有答案