我以前也看到过类似的问题,但它们似乎不太适合我的问题。
我有一个名为product的post类型,我有两个分类法,product\\u cat和location
我想要结合这两种分类法的归档页面,其结构如下/product/product\\u cat/location
我知道这可以通过重写来完成,但我不知道如何让它工作。
Update
在某种程度上,我通过使用
add_rewrite_rule( \'^art-classes/([^/]*)/([^/]*)/?\',
\'index.php?product_cat=$matches[1]&location=$matches[2]\',
\'top\' );
但现在我的单一产品页面无法加载。它只是仍然加载归档页面。我的正则表达式有问题吗?