如何控制主页输出的文章数量,这个其实很简单。只需要在 tyepcho 的 themeInit 函数里面加入
if ($archive->is('index')){
$archive->parameter->pageSize = 9;// 输出条数
}
就可以了。themeInit 函数一般是在functions.php里。
如何控制主页输出的文章数量,这个其实很简单。只需要在 tyepcho 的 themeInit 函数里面加入
if ($archive->is('index')){
$archive->parameter->pageSize = 9;// 输出条数
}
就可以了。themeInit 函数一般是在functions.php里。