我设法通过REST API生成简单的Woocommerce产品。 我无法使用html代码添加产品内容(例如我的表)。
其余api
$api_response = wp_remote_post( $client_domain . '/wp-json/wc/v3/products', array(
'headers' => array(
'Authorization' => 'Basic ' . base64_encode( $K.':'.$S )
),
'body' => array(
'name' => $product_name, // product title
// 'status' => 'publish', // default: publish
'type' => 'simple',
'categories' => array(
array(
'id' => 22 // each category in a separate array
)
),
'regular_price' => $price, // product regular price
'price' => $price, // current product price
'description' => $allTable, // **** HTML TABLE ... *****
'short_description' => 'tilesim user product',
'visible' => true, // current product price 'images' => [ ['src' => $pimage] ] // array( "src" => $pimage)
'images' => [
[
'src' => $pimage
],
[
'src' => $rimage
]
]
)
带有注释的开头(****)的行具有变量($allTable
),该变量将显示为原始html而不是表格:
![美化html] https://s-ivry.tilesim.co.il/wp-content/uploads/2019/01/woo_product_html.png)
如何解决此问题并获取表格,而不是html标记?
答案 0 :(得分:1)
PHP提供了用于编码和解码的htmlentities函数。请检查以下示例,如何解码php字符串。
$str = '<a href="https://www.w3schools.com">w3schools.com</a>';
echo html_entity_decode($str);