今回は記事詳細ページ(single.php)を作成していきます。
目次
配置はお好みで。
西暦.月.日
<?php the_time('Y.n.j'); ?>
年月日
<?php the_time('Y年n月j日'); ?>
カンマで区切って表示
<?php the_category(','); ?>
空白を使って並べる
<?php the_category(' '); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php the_tags(); ?>
<?php the_post_thumbnail(); ?>
<?php previous_post_link('%link', '前の記事へ'); ?>
<?php next_post_link('%link', '次の記事へ'); ?>
<?php if(have_posts()): while(have_posts()):the_post(); ?>
<div id="singlePage">
<time datetime="<?php the_time('Y.n.j'); ?>"><?php the_time('Y.n.j'); ?></time>
<p class="cate"><?php the_category(','); ?></p>
<p class="title"><?php the_title(); ?></p>
<div class="content"><?php the_content(); ?></div>
</div>
<?php endwhile; endif; ?>
<div id="arrow">
<p><?php previous_post_link('%link','≪ 前の記事へ'); ?></p>
<p><?php next_post_link('%link','次の記事へ ≫'); ?></p>
</div>