WordPRESS single.php テンプレート ①

<?php get_header(); ?>

<div class="container">
<div class="content">
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<article<?php post_class('kiji'); ?>>
<h1><?php the_title(); ?></h1>
<div class="sub-header">
<!-- パンくずリスト -->
<div class="bread">
<ol>
<li><a href="<?php echo home_url(); ?>">
TOP
</a></li>

<li>
<?php if(has_category()): ?>
<?php $postcat=get_the_category(); ?>
<?php echo get_category_parents($postcat[0], true, '<li></li>'); ?>
<?php endif; ?>
<a><?php the_title(); ?></a>
</li>
</ol>
</div>
</div>
<!-- タグ出力 -->
<div class="kiji-tag">
<?php the_tags('<ul><li>','</li><li>', '</li></ul>'); ?>
</div>

<!-- 投稿日 -->
<div class="kiji-date">
<time
datetime="<?php echo get_the_date('Y-m-d'); ?>">
投稿:<?php echo get_the_date(); ?>
</time>

<!-- 更新日 -->
<?php if(get_the_modified_date('Ymd') > get_the_date('Ymd')): ?>
<time
datetime="<?php echo get_the_modified_date('Y-m-d'); ?>">
更新日:<?php echo get_the_modified_date(); ?>
</time>
<?php endif; ?>
</div>

<?php if(has_post_thumbnail()): ?>
<div class="i-catch">
<?php the_post_thumbnail('large'); ?>
</div>
<?php endif; ?>

<?php the_content(); ?>
</article>
<?php endwhile; endif; ?>
</div>

</div>
<?php get_footer(); ?>