我希望你很好=)
我正在使用WordPress,但我的主题有问题,使用地理定位时浏览器会冻结,如果停用地理定位器,就没有问题。
我提到的网站是www.globalinmueble.com,并且我拥有一个网站,几乎所有版本都没有问题(www.globalcoche.com)。
我看到的一个重要细节如下:
Notice: Trying to get property of non-object in /home/diarioe4/public_html/globalinmueble/wp-content/themes/gmueble/admin/estatemanagement/includes/functions/common-functions.php on line 2088
出现在全局属性中的错误,代码为:
if (! function_exists ('pf_get_term_top_most_parent')) {
function pf_get_term_top_most_parent ($ term_id, $ taxonomy) {
$ parent = get_term_by ('id', $ term_id, $ taxonomy);
$ k = 0;
if (! empty ($ parent)) {
while ($ parent-> parent! = '0') {
$ term_id = $ parent-> parent;
$ parent = get_term_by ('id', $ term_id, $ taxonomy);
$ k ++;
}
}
return array ('parent' => $ parent-> term_id, 'level' => $ k); // line 2088
}
}
我不知道有什么事要做,非常感谢您的帮助和时间!