Re: ページリストの表示について

2017年6月9日 at 21:33

$day = $page->getCollectionDatePublicObject()->format('Y-m-d');
$datetime = new DateTime($day);
$week = array("日", "月", "火", "水", "木", "金", "土");
$w = (int)$datetime->format('w');

これを適当な場所に追加で記載して

$date = $page->getCollectionDatePublicObject()->format('Y年m月d日(' . $week[$w] . ')');

とすればできますね。

Re: ページリストの表示について

2017年6月9日 at 22:13
akiさん
ありがとうございます!
やってみます!