我在下面的代码段中发现以下错误,并指向引用$result[\'body\']赋值的行。is\\U wp\\U错误应该已经捕获到该错误??????????????
致命错误:无法将WP\\u error类型的对象用作数组
$result = wp_remote_post( ..... ) );
if( is_wp_error( $result ) ):
$display = \'Error Message\';
else:
$display = $result[ \'body\' ];
endif;