Здравствуйте! Помогите разобраться новичку. Вылезла вот такая ошибка на Wordpress сайте:
Notice: Trying to get property of non-object in /home/mysite/public_html/wp-content/themes/mytheme/functions.php on line 537
function infor_get_categories($taxonomy_name, $post_type)
{
$obj = get_post_type_object($post_type);
$name = $obj->labels->singular_name; <--- Вот та самая 537 строка
$cats = get_terms($taxonomy_name);
return $cats;
}
-
Вопрос задан
-
825 просмотров