銀河鉄道

【WordPress】bodyに任意のクラス名を付ける

サムネイル
bodyタグに任意のクラス名

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();
      }
      ?>>

著者

author
月うさぎ

編集後記:
この記事の内容がベストではないかもしれません。

記事一覧