我正在使用wordpress并希望为自定义帖子添加分页。但我必须通过index.shtml维护post slug。我想通过带页码的索引页面添加分页。
我当前的网址:
www.demo.com/demo_post/index.shtml
我想分页第二页网址:
www.demo.com/demo_post/index-2.shtml
任何帮助都将不胜感激,我一直在努力解决这个问题。提前谢谢!
答案 0 :(得分:0)
实际上这个index-2.shtml被认为是文件名,所以你必须将这个' 2'或者' 3'或者从文件名中得到任何索引。因此,您可以使用字符串替换方法将2与index-2.shtml分开,例如:
$filename = __FILE__; //return base file name e.g. index-2.shtml
$filename = str_replace("index-","",$filename);
$filename = str_replace(".shtml","",$filename); //this will finally return 2
现在,在您的分页函数参数中使用此' 2'(索引)。希望这可能对你有所帮助。 : - )