我想从下面的数组中获取term_taxonomy_id
,但每次它都会给我以下错误。
捕获致命错误:无法转换类WP_Error的对象 在C中字符串......
Array
(
[0] => stdClass Object
(
[term_id] => 5
[name] => fonts
[slug] => fonts
[term_group] => 0
[term_taxonomy_id] => 5
[taxonomy] => category
[description] =>
[parent] => 0
[count] => 2
[object_id] => 96
[cat_ID] => 5
[category_count] => 2
[category_description] =>
[cat_name] => fonts
[category_nicename] => fonts
[category_parent] => 0
)
)
答案 0 :(得分:2)
你试图得到什么错误?试试这个:
foreach($yourarray as $term){
echo $term->term_taxonomy_id;
}