我有以下url查询,它将参数texas和county harris添加到查询的永久链接中。这些是称为地理的自定义分类法的一部分。
xyz.com/dealers/honda/?geography=texas&geography=harris
如何在wordpress中重写此网址为:
xyz.com/dealers/honda/texas/harris/
答案 0 :(得分: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错误。