可捕获的致命错误:无法将类 WP_Error 的对象转换为第 186 行 /home/winentra/public_html/s1.ssonline.co.in/wp-content/themes/peekaboo/admin/common-functions.php 中的字符串
186号线
echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
请问有什么想法吗?
可捕获的致命错误:无法将类 WP_Error 的对象转换为第 186 行 /home/winentra/public_html/s1.ssonline.co.in/wp-content/themes/peekaboo/admin/common-functions.php 中的字符串
186号线
echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
请问有什么想法吗?
elseif ( is_single() && !is_attachment() && get_post_meta($post->ID, 'cust_cat', true) ) {
$cat = get_post_meta($post->ID, 'cust_cat', true);
echo $cat;
echo $currentBefore;
the_title();
echo $currentAfter;
}
elseif ( is_single() && !is_attachment() && !get_post_meta($post->ID, 'cust_cat', true) ) {
$cat = get_the_category(); $cat = $cat[0];
echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
echo $currentBefore;
the_title();
echo $currentAfter;
}
这个问题的原因和解决方法在这里
如果 PHP 无法将其转换为字符串以进行打印,则返回的对象是复杂类型。