扩展页面URL时未获得404

时间:2020-06-15 作者:Mads

我在我的一些页面上使用了短代码,需要在页面URL中添加性别。

例如,如果页面slug为/忍者;,我需要能够使用URL,如/忍者/女性;和/忍者/男性;对于页面。

默认行为是我得到404,但我只想得到正常的页面。

这有可能吗?

谢谢

1 个回复
SO网友:Mads

此代码修复了问题:

function gender_endpoints() {
    add_rewrite_endpoint(\'female\', EP_PAGES);
    add_rewrite_endpoint(\'male\', EP_PAGES);
}

add_action(\'init\', \'gender_endpoints\');