Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save rajeshsingh520/311626194a6bf50fdd9303af9b5544d8 to your computer and use it in GitHub Desktop.

Select an option

Save rajeshsingh520/311626194a6bf50fdd9303af9b5544d8 to your computer and use it in GitHub Desktop.
add_action( 'init', function() {
global $wpdb;
$wpdb->query(
"
UPDATE {$wpdb->postmeta}
SET meta_value = ''
WHERE meta_key IN (
'out_of_stock_product_preparation_time',
'out_of_stock_product_preparation_time_min',
'out_of_stock_product_preparation_time_max'
)
AND meta_value = '0'
"
);
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment