我想创建一个permalink来搜索一个自定义的帖子类型,其中有两个分类法。以下是一些适当的示例:
/root/%taxonomyA%/%taxonomyB%
/root/%taxonomyA%/taxonomyB/%taxonomyB%
分类法B可以位于任何数量的分类法As中。
我已经为这种结构准备了一些非常有效的东西:
/root/%taxonomyA%/%customPostType%
这可能吗?我更喜欢第一个例子,但我可以接受第二个。
我确实试图加入这个重写规则,但我在重写检查器中没有得到我期望的匹配。
add_rewrite_rule(
\'^root/([^/]+)/taxonomyB/([^/]+)\',
\'index.php?post_type=customPostType&taxonomyA=$matches[1]&taxonomyB=$matches[2]\',
\'top\'
);
当我投入时
root/A/taxonomyB/B
督察,结果是
attachment: B