LoginSignup
1
1

More than 5 years have passed since last update.

WordPressの年別アーカイブを和暦へ

Last updated at Posted at 2017-03-15

WordPressの"get_archives_link"を使用時に

年別アーカイブを使用時に
平成表記を使いたい場合は
function.phpに以下を追記します。

個人的には、平成のみで良かったので、昭和や明治は省きました。
月別で行い方は、ググると出てきます。

function.php
function add_ja_year_archives( $link_html ) {
    return preg_replace_callback(
          "/[0-9]+?<\/a>/"
        , function ( $matches ) {
              $y = $matches[1];

                  $gg = "平成";
                  $yy = $y - 1988;

              return "{$gg}{$yy}年</a>"";
          }
        , $link_html
    );
} 
add_filter( 'get_archives_link', 'add_ja_year_archives' );
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1