WP スラッグの取得 メモ

固定ページのスラッグ名
<?php echo esc_attr($post->post_name);?>

ループの中でスラッグを取得
<?php
global $post;
$slug = $post->post_name;
?>

<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<?php $slug = $post->post_name; ?>

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…