themology

Smart Export : add product post meta

May 2nd, 2015
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. // functions.php
  2.  
  3. function custom_product_meta($array)
  4. {
  5.         $array[] = '_length';
  6.         $array[] = '_width';
  7.         $array[] = '_height';
  8.  
  9.         //also works for size or color attributes, or data added by a plugin... to find the right key you need :
  10.        
  11.         return $array;
  12. }
  13. add_filter('wcse_included_order_product_keys_filter', 'custom_product_meta');
Add Comment
Please, Sign In to add comment