1

在 Wordpress 中,我有一个功能允许我通过添加名为“daily_cartoon”的自定义帖子类型的新帖子来自动添加 woocommerce 产品。

这是函数的代码:

function convert_daily_cartoon_into_product($post_id){

  if( ( $_POST['post_status'] == 'publish' ) && ( $_POST['original_post_status'] != 'publish' ) ) {

    // Create post object
    $post = array(
      'post_title' => $_POST['post_title'],
      'post_type' => 'product',
      'post_status' => 'publish',
      'tax_input' => array( 'product_cat' => 14 )
    );

    // Insert the post into the database
    $new_print = wp_insert_post( $post );

    update_post_meta( $new_print, '_thumbnail_id', get_post_thumbnail_id( $post_id ) );
    update_post_meta( $new_print, '_regular_price', 5 );
    update_post_meta( $new_print, '_price', 5 );
  }

}

 add_action('publish_daily_cartoon', 'convert_daily_cartoon_into_product');

新产品很好地显示在管理区域中,其中包含所有数据 - 即价格、类别、已发布等。

但由于某种原因,在我打开新产品进行编辑并单击更新之前,它不会显示在网站商店页面上。

有人吗?

4

1 回答 1

0

确保将产品的 _visibility 元设置为可见

于 2013-11-04T10:33:10.217 回答