好伙计我只是问我如何在关于美国的wordpress静态页面中添加分页。实际上我只是在静态页面中添加帖子,但它只显示我想要所有帖子的帖子,这就是我需要分页的原因。请记住,我只是询问静态页面中的分页,而不是分类。
答案 0 :(得分:3)
我的帖子中没有看到任何代码。我是按照自己的方式完成的,请查看。
//grab the URL into a string variable (i.e., "yoursite.com/page/2" )
$strURL = $_SERVER['REQUEST_URI'];
//array the elements in the string btwn "/" (i.e. [page], [2] )
$arrVals = split("/",$strURL);
//boolean var used to alert when the integer page var is next
$intnextone = 0;
//integer variable for pagenumber
$intpagenum = 0;
// loop through the array
foreach ($arrVals as $value) {
if ($intnextone == 1){$intpagenum=$value;} // assign var
if ($value == "page") {$intnextone =1;} //next loop is int
}
感谢。