日本語化 プラグ▶fields▶date▶jquery.datetime.js
変更
出力
単発
echo date('Y年m月d日', strtotime($cfs->get('birthday')));
ループ未検証
<?php $loop = new WP_Query(array("post_type" => "schedule", "posts_per_page" => 1 )); while($loop->have_posts()): $loop->the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2><?php the_title(); ?></h2> <h3><?php echo $cfs->get('title'); ?></h3> <ul> <li><?php echo date('Y年m月d日', strtotime($cfs->get('date'))); ?></li> <li><?php echo $cfs->get('summary'); ?></li> </ul> <?php $fields = $cfs->get('Schedule'); foreach ($fields as $field) { ?> <h3><?php echo $field['title']; ?></h3> <ul> <li><?php echo date('Y年m月d日', strtotime($field['date'])); ?></li> <li><?php echo $field['summary']; ?></li> </ul> <?php } ?> </div> <?php endwhile; ?>
参考
http://brushape.com/wordpress/%E3%80%90wordpress%E3%80%91%E3%82%AB%E3%82%B9%E3%82%BF%E3%83%A0%E3%83%95%E3%82%A3%E3%83%BC%E3%83%AB%E3%83%89%E3%82%92%E7%B0%A1%E5%8D%98%E4%BD%9C%E6%88%90%E3%81%97%E3%81%9F%E3%81%8F%E3%81%A6%E3%80%8Ccu/