NO IMAGE

WordPressの管理バー・ツールバーの位置を下に変える。

WordPressはログインしているとページ上部に編集バーが出る。
また管理画面上でも出すか出さないかできるが凄く邪魔。
div クラス wpadminbar

http://kato.space/wp/wp-includes/css/admin-bar.min.css

#wpadminbar {
    direction: ltr;
    color: #ccc;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    height: 32px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 600px;
    z-index: 99999;
    background: #23282d;
}

 

トップの時だけ、下に落とす

参考:http://www.02320.net/wp_admin_bar_to_the_bottom/

// ツールバー、トップ画面は下に表示
function oz_admin_bar_to_the_bottom() {
	
if ( is_home() ) {
  echo '<style type="text/css">
  #wpadminbar {
    top: auto !important;
    bottom: 0;
  }
  </style>';
	}	
	}
add_action( 'wp_head', 'oz_admin_bar_to_the_bottom' );

 

 

NO IMAGE
最新情報をチェックしよう!

  • Warning: Trying to access array offset on value of type bool in /home/xsvx1010357/kato.space/public_html/wp/wp-content/themes/the-thor/template-parts/single-prevnext.php on line 83

    Warning: Trying to access array offset on value of type bool in /home/xsvx1010357/kato.space/public_html/wp/wp-content/themes/the-thor/template-parts/single-prevnext.php on line 84

    Warning: Trying to access array offset on value of type bool in /home/xsvx1010357/kato.space/public_html/wp/wp-content/themes/the-thor/template-parts/single-prevnext.php on line 85
>最強のWordPressテーマ「THE THOR」

最強のWordPressテーマ「THE THOR」

システムの構築・保守運用「   」 社内システム担当が欲しいが、専属で雇うほどの仕事量はない。 必要な時に必要なだけ頼りたいというお悩みを持つ企業様へ専門知識を持って対応を行っております。 サーバから各種システムまで自社・他社で構築されたシステムに対してサポートを行っております。

CTR IMG