Blog スタッフブログ

【WORDPRESS】管理画面のログインページにロゴを表示

こんにちは、WEB開発のYTです。

WORDPRESSにログインするログインページにロゴを表示する方法です。

シンプルですがfunction.phpに下記を入力します。

function login_logo() {
  echo '<style type="text/css">
  #login h1 a {
  background: url('.get_bloginfo('template_directory').'/images/logo.png) no-repeat;
  background-size:contain;
  width: 240px;
  height: 60px;
  margin:0 auto;
  }
  </style>';
}

画像はlogo.phpの部分で変更できます。

あとはサイズ設定などをして表示すれば完了となります