記事の投稿日時とカテゴリを表示

記事の投稿日時とカテゴリ

関数

記事の投稿日を出力

<?php echo get_the_date(); ?>


記事の投稿時間を出力

<?php the_time(); ?>


記事が属するカテゴリを出力

<?php the_category(); ?>

記事の投稿日を表示

<p class="postinfo">
<?php echo get_the_date(); ?>
</p>

記事の投稿時間を表示

<p class="postinfo">
<?php echo get_the_date(); ?> <?php the_time(); ?>
</p>

記事が属するカテゴリを表示

  • リスト形式で出力しないようにする
  • パラメータを「,(カンマ)」と指定します
<p class="postinfo">
<?php echo get_the_date(); ?> <?php the_time(); ?>
 |
カテゴリ:<?php the_category(', '); ?>
</p>


投稿日時とカテゴリーのデザインを指定

p.postinfo {
	color: #2b76cc;
	text-align: right;
	margin: 20px 0 0 0;
}
p.postinfo a {
	color: #2b76cc;
}


まとめ

記事の投稿日を出力する
  • ループの中に記述する
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<?php echo get_the_date(); ?>
<?php endwhile; endif; ?>
  • 「設定」→「日付フォーマット」

記事の投稿時間を出力する
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<?php the_time(); ?>
<?php endwhile; endif; ?>
  • 「設定」→「時刻フォーマット」


まとめて記述

<?php if(have_posts()): while(have_posts()): the_post(); ?>

<div class="post">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<p class="postinfo">
<?php echo get_the_date(); ?> <?php the_time(); ?>
 |
カテゴリ:<?php the_category(', '); ?>
</p>
</div>

<?php if(is_single()): ?>
<p class="pagelink">
<span class="oldpage"><?php previous_post_link(); ?></span>
<span class="newpage"><?php next_post_link(); ?></span>
</p>

<?php endif; ?>