Advertisement
mbcreation

Quick Export : add product post meta

Apr 15th, 2014
875
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 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.     //please refer to : http://codecanyon.net/item/woocommerce-quick-export-plugin/6040506/faqs/20773
  11.    
  12.     return $array;
  13. }
  14. add_filter('wqep_included_order_product_keys_filter', 'custom_product_meta');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement