如果您不想使用buildin归档,那么实现这一点的最佳方法是创建一个包含与archive.php
.
另外,添加一些post_meta
到您的静态页面,包含您要显示的帖子的年份和月份。
在页面模板中,使用$args
:
$args = array (
\'year\' => get_post_meta( get_the_ID(), \'your_year_meta\', true ),
\'monthnum\' => get_post_meta( get_the_ID(), \'your_month_meta\', true )
\'offset\' => $offset,
//...
);
像往常一样进行查询,并使用
archive.php
在立柱之间循环。
此外,如果希望对帖子进行分页,请确保正确计算自定义偏移量,应该是这样:)