如何用PHP更改每个产品的产品简短说明? 时间:2017-11-14 作者:dimitrisr 你知道如何更改简短的描述吗?用于为简短描述指定特定值的元键是什么?如果我想更改我使用的价格:update_post_meta( $post_id, \'_price\', $ItemPrice); 我应该使用什么元标记来进行简短描述? 1 个回复 SO网友:Temani Afif 您要查找的是摘录(也称为简短描述),它不存储为元值。它和邮局一起存放在post_excerpt 柱因此,您可以尝试以下操作:// Update product with id = 44 $my_post = array( \'ID\' => 44, \'post_excerpt\' => \'New text\', ); // Update the post into the database wp_update_post( $my_post ); 结束 文章导航