您要么必须包含/要求包含您正在使用的函数的WPMD文件,要么只使用全局定义的$detect
对象,如下所示:
global $detect;
if (! $detect->isMobile() || $detect->isTablet()) {
// output your share buttons
}
// EDIT上述条件等同于
! wpmd_is_phone()
有条件的但是,如果要将此限制为仅限于桌面设备,则应使用以下选项:
global $detect;
if (! ($detect->isMobile() || $detect->isTablet())) {
// output your share buttons
}