Clearision icon indicating copy to clipboard operation
Clearision copied to clipboard

A HTML5 Double Style Wordpress Theme

Results 1 Clearision issues
Sort by recently updated
recently updated
newest added

/func/wp-useragent-detect.php 里面使用了 wp-useragent 插件的代码来判断访客浏览器和操作系统,但是几年前还没有 edge ,所以现在识别不出来 edge 了。 当然,这个主题应该是不会进行更新了,如果其他人也遇到了这个问题的话,可以看下解决办法。 目前我从 wp-useragent 新版本里借用过来了这部分代码,建议添加到 clrs_detect_webbrowser 函数判断部分的最前面。 ``` if (preg_match('/Edge/i', $useragent) && preg_match('/Chrome/i', $useragent) && preg_match('/Safari/i', $useragent)) { $link = 'http://en.wikipedia.org/wiki/Microsoft_Edge'; $title =...