Guest User

Untitled

a guest
May 27th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php
  2. $thepostid = $post->ID;
  3. $product_object = $thepostid ? wc_get_product( $thepostid ) : new WC_Product();
  4.  
  5. $product_ids = $product_object->get_upsell_ids( 'edit' );
  6. foreach ( $product_ids as $product_id ) {
  7. $product = wc_get_product( $product_id );
  8. if ( is_object( $product ) ) {
  9. echo get_the_title($product_id);
  10. }
  11. }
  12.  
  13. ?>
Add Comment
Please, Sign In to add comment