我使用wp_insert_post添加了一个带有分类标准的woocommerce产品" product_cat"。这是我的代码。
首先我添加一个新产品。
$post_id = wp_insert_post( array(
'post_title' => 'My Title',
'post_content' => 'This is custom template',
'post_status' => 'publish',
'post_type' => "product",
) );
在这里,我附上了该帖子的条款
wp_set_post_terms( $post_id, array(12,13), 'product_cat' );
但是在商店页面上点击我添加产品的特定类别时,产品不会显示在该类别上,但在后端(wp admin)上我看到这些条款附在我的产品上。
答案 0 :(得分:0)
我忘了更新" _visibility"
update_post_meta( $post_id, '_visibility', 'visible' );
现在,它工作正常。