כיצד לשנות בוורדפרס את המיקום של הסרגל העליון?
לא פעם קרה לי כי הסרגל העליון (admin bar) של וורדפרס הפריע לי בעיניים מכיוון והסתיר תפריטים שהיו מוגדרים כ – position:fixed
ב css
. מספר שורות ב functions.php
והאדמין יירד לתחתית העמוד:
<?php
/***** BEGIN HERE *****/
function fb_move_admin_bar() { ?>
<style type="text/css">
body {
margin-top: -28px;
padding-bottom: 28px;
}
body.admin-bar #wphead {
padding-top: 0;
}
body.admin-bar #footer {
padding-bottom: 28px;
}
#wpadminbar {
top: auto !important;
bottom: 0;
}
#wpadminbar .quicklinks .menupop ul {
bottom: 28px;
}
</style>
<?php }
// on backend area
add_action( 'admin_head', 'fb_move_admin_bar' );
// on frontend area
add_action( 'wp_head', 'fb_move_admin_bar' );
לא עבד לי… יש לך רעיון למה?
כן, הייתה שגיאה בקוד… נסה עכשיו.
שים לב להעתיק את הקוד רק אחרי ההערה BEGIN HERE.