1

可捕获的致命错误:无法将类 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 . ' ');

请问有什么想法吗?

4

3 回答 3

1
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;

    }
于 2013-10-06T16:51:17.930 回答
1

这个问题的原因和解决方法在这里

于 2012-07-13T04:28:34.467 回答
1

如果 PHP 无法将其转换为字符串以进行打印,则返回的对象是复杂类型。

于 2012-07-13T04:29:07.310 回答