WordPress菜单显示特定年份的帖子

时间:2018-08-07 07:36:29

标签: php html wordpress

我想在Wordpress主题中创建菜单,菜单项为:“ 2016”,“ 2017”,“ 2018”。每年必须链接到特定年份的所有帖子。我应该在哪个文件中循环发布?我是否必须每年创建3个单独的页面,并且在每个文件中我必须添加如下代码:

$args = array(
  'post_type' => 'post',
  'ignore_sticky_posts' => 1,
  'year'  => 'SPECIFIC YEAR',
);

$the_query = new WP_Query( $args );

if ( $the_query->have_posts() ) :
  while ( $the_query->have_posts() ) : $the_query->the_post();

      the_content();

  endwhile;
endif;

1 个答案:

答案 0 :(得分:0)

尝试一下

$args = array(
    'type'            => 'yearly',
    'ignore_sticky_posts' => 1,
        'post_type'     => 'post'
);
wp_get_archives( $args );