如何从wordpress URL

时间:2016-02-03 16:08:30

标签: php wordpress .htaccess taxonomy

我创建了一个自定义帖子类型CARS。

我注册了两个分类法。制造商和TYPE。

我有" prettied"过滤网址如此

$new_rules = array(
'cars/(manufacturer|type)/(.+?)/(manufacturer|type)/(.+?)/?$' => 'index.php?post_type=eg_cars&' . $wp_rewrite->preg_index(1) . '=' . $wp_rewrite->preg_index(2) . '&' . $wp_rewrite->preg_index(3) . '=' . $wp_rewrite->preg_index(4),
'cars/(manufacturer|type)/(.+)/?$' => 'index.php?post_type=eg_cars&' . $wp_rewrite->preg_index(1) . '=' . $wp_rewrite->preg_index(2)
);

它工作得非常好并形成如下网址结构: domain.com/cars/manufacturer/bmw/type/suv

但是,我一直无法解决如何从网址中删除分类标本的问题。期望的结果是: 的 domain.com/cars/bmw/suv

0 个答案:

没有答案