【WordPress】Hタグに自動で番号を振る

出来上がりイメージ

手順

CSSエディタ表示

CSS貼り付け

こちらの文字をコピーする。

/* タイトルに自動で章番号を表記 */
body {
counter-reset: chapter;
}
h2 {
counter-reset: sub-chapter;
}
h3 {
counter-reset: section;
}
.article h2::before {
counter-increment: chapter;
content: counter(chapter) “. “;
}
.article h3::before {
counter-increment: sub-chapter;
content: counter(chapter) “-” counter(sub-chapter) “. “;
}
.article h4::before {
counter-increment: section;
content: “(” counter(section) “) “;
}

貼り付けして「公開」を押す。

コメント