Wordpress 管理栏仅在移动设备上显示
Wordpress Admin bar show only on Mobile
嗨,
我只为 Buddypress 使用管理栏。
对于桌面版,我将侧边栏中的所有菜单点都外包了。
不过,管理栏更适合手机版。
怎么解决最好,管理栏只在手机上显示。
感谢您的帮助。抱歉我的英语不好 ;)
一种选择是实现如下功能:
add_action('wp_footer', 'hide_admin_bar_prefs');
function hide_admin_bar_prefs() {
$op = '
<style type="text/css">
html {margin-top: 0px !important;}
#wpadminbar {display: none;}
@media (max-width: 400px) {
html {margin-top: 32px !important;}
#wpadminbar {display: block;}
}
</style> ';
echo $op;
}
嗨,
我只为 Buddypress 使用管理栏。 对于桌面版,我将侧边栏中的所有菜单点都外包了。
不过,管理栏更适合手机版。
怎么解决最好,管理栏只在手机上显示。
感谢您的帮助。抱歉我的英语不好 ;)
一种选择是实现如下功能:
add_action('wp_footer', 'hide_admin_bar_prefs');
function hide_admin_bar_prefs() {
$op = '
<style type="text/css">
html {margin-top: 0px !important;}
#wpadminbar {display: none;}
@media (max-width: 400px) {
html {margin-top: 32px !important;}
#wpadminbar {display: block;}
}
</style> ';
echo $op;
}