如何在Wordpress固定链接中使用问号?

时间:2019-04-20 13:52:38

标签: php wordpress url-rewriting permalinks

我想从此更改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()之类的命令不起作用。

0 个答案:

没有答案