Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save annalinneajohansson/8d9342579feb4d8a2ce15fd83446ad21 to your computer and use it in GitHub Desktop.
Save annalinneajohansson/8d9342579feb4d8a2ce15fd83446ad21 to your computer and use it in GitHub Desktop.
foreach ( $product_post_ids as $id ) {
$product = wc_get_product( $id );
$product->set_stock_status( 'instock' );
$product->set_manage_stock( 0 );
$product->save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment