教文館の社内ナレッジベースです。
<!-- カスタムフィールドの期限日以降に終了表示 -->
<?php $end = get_post_meta($post->ID,'end_date',true); ?>
<?php if (strtotime(date_i18n('Ymd')) > strtotime($end))
{
get_template_part('module/module_entry_meta_closed');
}
?>
<!-- カスタムフィールドのメタ情報を表示 -->
<div class="infoList">
<ul>
<li class="nth-child">
<?php echo "<b>日時</b>"; ?>
<?php echo c2c_get_custom('start_date','',' ~ ',''); ?>
<?php echo c2c_get_custom('end_date','',' ~ ',''); ?>
</li><li class="nth-child">
・
・
・
</div>

以上のパートをsingle.phpに挿入。