// 「公開・投稿日」or「最終更新日」を取得 ======================================== //
function get_mtime($format) {
$mtime = get_the_modified_time('Ymd');
$ptime = get_the_time('Ymd');
if ($ptime >= $mtime) {
return null;
} else {
return get_the_modified_time($format);
}
}
<div class="entry_date">
<?php if($mtime = get_mtime('Y.n.j')): ?>
更新日:
<time itemprop="dateModified" datetime="<?php echo get_mtime('Y-m-d') ?>" class="update_date">
<?php echo $mtime ?>
</time>
/ 公開日:
<span itemprop="datePublished" content="<?php echo get_post_time('Y-m-d') ?>" class="publish_date">
<?php echo get_post_time('Y.n.j') ?>
</span>
<?php else: ?>
公開日:
<time itemprop="datePublished" datetime="<?php echo get_post_time('Y-m-d') ?>" pubdate="pubdate" class="update_date">
<?php echo get_post_time('Y.n.j') ?>
</time>
<?php endif; ?>
</div>