Advertisement
Aurangajeb

Get external product through WPUF WC form

Nov 20th, 2020
1,322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. /**
  2. * Get external product through WPUF WC form.
  3. * Add this code in your wp-content/themes/child-theme/functions.php file
  4. **/
  5. function wpuf_support_external_product( $post_id ) {
  6.    
  7.     $product_type = get_post_meta( $post_id, 'product_type', true );
  8.  
  9.     wp_set_object_terms( $post_id, $product_type, 'product_type' );
  10.    
  11. }
  12.  
  13. add_action( 'wpuf_add_post_after_insert', 'wpuf_support_external_product' );
  14. add_action( 'wpuf_edit_post_after_update', 'wpuf_support_external_product' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement