milardovich

Fix deprecated post meta

Dec 11th, 2019
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. function bv_fix_deprecated_visibility( $product_id, $post, $update ) {
  2.     if($post->post_type == 'product') {
  3.         $product = wc_get_product($product_id);
  4.         update_post_meta($product_id,'_visibility',$product->get_catalog_visibility());
  5.     }
  6. }
  7.  
  8. add_action( 'save_post', 'bv_fix_deprecated_visibility', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment