您有权访问主题文件吗?如果是,请尝试更换<?php get_sidebar() ?>;
使用此选项:
<?php
if( stristr($_SERVER[\'HTTP_USER_AGENT\'],\'android\') === FALSE ) {
get_sidebar();
}
?>
否则,如何访问主题的javascript文件?
var ua = navigator.userAgent.toLowerCase();
var isAndroid = ua.indexOf("android") > -1;
if(isAndroid) {
// Do something!
// Perhaps target the CSS to hide the sidebar (display:none;)?
}
编辑:
您还可以尝试在针对移动设备的默认样式表之后加载样式表。加载样式表时使用media属性:
<link href="mobile.css" rel="stylesheet" type="text/css" media="only screen and (max-device-width: 480px)" />
或者,您可以只在现有样式表中添加一些声明:
// target small screens (mobile devices or small desktop windows)
@media only screen and (max-width: 480px) {
/* CSS goes here */
}