Woocommerce: How to update meta attribute value of all products programmatically
I have a meta attribute on my products that can be accessed like this: get_post_meta( $product_id, '_disable_shipping', true ); I need to update _disable_shipping attribute of all products on MySQL or programmatically. Is there a simple way of doing it?…