我的archive.php
<?php wp_get_archives( array( \'type\' => \'monthly\', \'limit\' => 12, \'show_post_count\' => 1 ) ); ?><br/>
我的
date.php
<?php get_header();
while (have_posts()) : the_post();
echo the_title() . \'<br/><br/>\';
endwhile;
wp_reset_query();
get_footer();?>
当我单击时
december 2013 类型
myblog.com/archive 然后是
myblog.com/2013/12 和显示
only three posts\' title 自2013年12月起。
如何修复它以显示特定月份的所有帖子?