Программно создаю термы для таксы, но потом не могу зайти в созданные термы — появляется ошибка (см. скриншот).
foreach ($get_obj_result as $get_obj_res) {
$term_id = 0;
if (term_exists($get_obj_res->name, 'pwb-brand')) {
$term_id = term_exists($get_obj_res->name, 'pwb-brand');
} else {
$new_brand = wp_insert_term($get_obj_res->name, 'pwb-brand', array(
'slug' => $get_obj_res->slug,
));
if (!is_wp_error($new_brand)) {
$term_id = $new_brand;
} else {
error_log($new_brand->get_error_code());
echo '<div id="message" class="error"><p>' . $new_brand->get_error_message() . '</p></div>';
$err++;
}
}
}