1

我有以下 url 查询,它将参数 texas 和 County harris 添加到查询的永久链接中。这些是称为地理的自定义分类法的一部分。

xyz.com/dealers/honda/?geography=texas&geography=harris

如何在 wordpress 中将此 url 重写为:

xyz.com/dealers/honda/texas/harris/

4

1 回答 1

1

您可以在 functions.php 中执行以下操作:

add_rewrite_rule('^dealers/honda/([^/]*)/([^/]*)/?','index.php?geography=$matches[1]&geography=$matches[2]','top');

但是你应该注意你已经设置了两次地理,最后一个是将要使用的。

您还需要导航到您的永久链接页面,xyz.com/wp-admin/options-permalink.php然后才能真正起作用,否则您将收到 404ish 错误。

于 2012-10-12T19:27:05.023 回答