Discuz手机版如何去除“掌上论坛”的链接显示

source/plugin/mobile/mobile.class.php 212行

function global_header_mobile()  方法 返回空

function global_header_mobile() {
		return "";
		$useragent = strtolower($_SERVER['HTTP_USER_AGENT']);
		if(strpos($useragent, 'iphone') !== false || strpos($useragent, 'ios') !== false) {
			return lang('plugin/mobile', 'mobile_tip_ios');
		} elseif(strpos($useragent, 'android') !== false) {
			return lang('plugin/mobile', 'mobile_tip_android');
		} elseif(strpos($useragent, 'windows phone') !== false) {
			return lang('plugin/mobile', 'mobile_tip_wp7');
		}
	}




你可能感兴趣的:(Discuz手机版如何去除“掌上论坛”的链接显示)