标签: wordpress
我正在尝试将参数传递给wordpress页面。我不想将它作为查询字符串传递。我想以基于斜线的URL传递。
实施例
http://localhost/mysite/city?des=tn
要
http://localhost/mysite/city/tn
答案 0 :(得分:-1)
您必须使用自定义查询var并添加重写规则。
有关示例,请参阅this question and the answer。
"要添加到init"意味着你应该将它放在一个在init事件上运行的动作钩子中,如此
function addCityVar() { // .... } add_action("init", "addCityVar");