ブログ公開[年]表示 | OFFのパソコン日記

ブログ公開[年]表示

このブログのテンプレートは、タイトルの左に記事の公開[月日]が表示されますが、[年]が表示されません。
そこで[年]が出るように変更しました。

**** index.phpファイル変更 ****

<?php get_header(); ?>
  <div id=”content”> 
  <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?> 
    <div id=”post-<?php the_ID(); ?>”>

#****ここから追加****
<span><?php the_time(‘Y’) ?></span>
#****ここまで****

   <div><span><?php the_time(‘M’) ?></span> <span><?php the_time(‘d’) ?></span></div>

**** style.cssファイル変更 ****

.post-date {
 width: 45px;
 height: 49px;
 float:left;
 background: url(images/date-bg.gif) no-repeat;
}

#****ここから追加****
.post-year {
 font-size: 14px;
 text-transform: uppercase;
 color: #999999;
 text-align: left;
 display:block;
 line-height: 11px;
 padding-top: 2px;
      padding-bottom: 2px;
 margin-left: 7px;
}
#****ここまで****

.post-month {
 font-size: 11px;
 text-transform: uppercase;
 color: #FFFFFF;
 text-align: center;
 display:block;
 line-height: 11px;
 padding-top: 2px;
 margin-left: -3px;
}
.post-day {
 font-size: 18px;
 text-transform: uppercase;
 color: #999999;
 text-align: center;
 display:block;
 line-height: 18px;
 padding-top: 7px;
 margin-left: -3px;
}