Last active
March 13, 2018 11:45
-
-
Save annalinneajohansson/8d9342579feb4d8a2ce15fd83446ad21 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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