我想从此更改wordpress永久链接:
https://example.com/template1/lang1
对此:
https://example.com/?template=1&lang=1
我更改了永久链接,并在index.php中使用了一些类似的代码
<?php if($_GET['template']){
inculde('single.php')
}else{
...
}
?>
并且在single.php中对此进行查询后,wordpress无法将页面识别为单个页面,并且像存档页面一样工作,而is_single()之类的命令不起作用。