您正在使用存档小部件吗?如果不是,则调用哪个函数来获取存档。
尝试在侧栏中添加此代码(如下)。
<?php $archives = wp_get_archives(\'type=monthly&limit=10&echo=0\');
if ($archives) { ?>
<ul class="archive-list">
<?php echo $archives; ?>
</ul>
<?php } ?>
这将输出为最近10个月存档的无序列表,您可以将限制和类型更改为每周或根据需要更改。
有关在codex上找到的wp\\U get\\U存档的更多信息here