【WordPress】bodyに任意のクラス名を付ける
記事更新日:2022-09-13
header.phpに記述
body_class()の中にクラス名を記述
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="(ファビコンのパス)" type="image/svg+xml">
<?php wp_head(); ?>
</head>
<body <?php
if (is_single() || is_page()) {
body_class('(任意のクラス名)');
} else {
body_class();
}
?>>
2022-09-13
編集後記:
この記事の内容がベストではないかもしれません。