这取决于你的archives.php
是设计的。
您可以使用内置wp_get_archives()
获取过去12个月帖子的功能:
<?php
wp_get_archives(
array(
\'type\' => \'monthly\',
\'limit\' => 12
)
);
作为
described 在法典中。
或者您可以修改WP_Query
使用\'date_query\'
参数:
<?php
$args = array(
\'date_query\' => array(
array(
\'after\' => strtotime("-1 year"), // a year before
\'before\' => strtotime("now");, // now
\'inclusive\' => true, // false to exclude first and last day
)
)
);
$query = new WP_Query( $args );
同样
described 那里