get_month_link()

【関数】get_month_link( 年, 月 )
指定した年・月の月別アーカイブのURLを返す。年/月に「”」もしくは「false」を設定すると、当月のリンクを返す。

<?php
  $neko_post_year = get_the_date( 'Y' );
  $neko_post_month = get_the_date( 'm' );
?>
<a href="<?php echo get_month_link( $neko_post_year, $neko_post_month ); ?>">
inserted by FC2 system