オンラインRPG『RED STONE(レッドストーン)』 君はいつ、どれくらい『RED STONE』をプレイした?「戦闘力」を診断して16周年記念ロトボックスを手に入れよう!

[株式会社ゲームオン]
[画像1: https://prtimes.jp/i/10988/673/resize/ ]

■君の「戦闘力」はいくつ?16年間に注いだ『RED STONE』愛を診断し、感謝の「ロトボックス」をもらおう! 

[画像2: https://prtimes.jp/i/10988/673/res……

すべての人に捧げるオンラインRPG『LOST ARK』2021年1月27日(水)アップデート特設サイト公開!おうち時間を充実させる生活家電が当たるキャンペーンも

[株式会社ゲームオン]
[画像1: https://prtimes.jp/i/10988/672/resize/ ]

 

[画像2: https://prtimes.jp/i/10988/672/resize/ ]

●2021年1月27日(水)アップデート
■好感度「愛情」等級追加
 「好感度」とは、一部NPC……

ACFデイトピッカーで曜日を表示

<?php $week = array(“日”, “月”, “火”, “水”, “木”, “金”, “土”); ?>

<?php $date = date_create(”.get_field(‘カスタムフィールド名’).”); echo date_format($date,’Y/m/d’) . “(” . $week[(int)date_format($date,’w’)] . “)” ; ?>
The post ACFデイトピッカーで曜日を表示 first appear…

リストの最後の行だけ、CSSを適用する

メモ

最後の要素 + 最後から2つ目のliが奇数の場合
li:last-child,li:nth-last-child(2):nth-child(odd)

4列リストの一番左下にある要素
li:nth-child(4n+1):nth-last-child(-n+4),
4列リストの一番左下にある要素以降にあるliすべて
li:nth-child(4n+1):nth-last-child(-n+4) ~ li {
}
The post リストの最後の行だけ、CSSを適用する first appe…