您必须为此运行自定义查询。以下是显示特定年份帖子的查询。我以2012年为例。
$args = array(
\'post_type\' => \'post\',
\'ignore_sticky_posts\' => 1,
\'year\' => \'2012\',
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();
the_content();
endwhile;
endif;
wp_reset_postdata();