0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Wordpressの管理バーを簡単なCSSだけで邪魔にならないようにする

Last updated at Posted at 2022-04-21

はじめに

<headeer> が動的に動くサイトを作成していると、Wordpressの管理バーが邪魔!なの

調べたこと

  • 超簡単な方法 簡単かもしれないがめんどくさい方法
  • プラグインを入れる。もっと簡単だが、プラグインの入れすぎは。

これで解決

wordpress-admin.css
body.admin-bar header {
  margin-top: 32px;
}

理由

あくまで最新のWordpressのお話ですが、
ページによって body に 以下のclass を付与してくれます。

例えば

  • TOPページ = home
  • 記事ページ = single
  • 固定ページ = page
  • ログイン中 = admin-bar

のように入れてくれます。

この bodyのclassの有無で判別すれば良いことになります。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?