2016-05-22 5 views

答えて

1

商品ギャラリーの画像をどこからでも取得したい場合は、これを試すことができます。それはidで画像を取得します。

<?php 

     $product_id = '14'; 
     $product = new WC_product($product_id); 
     $attachment_ids = $product->get_gallery_attachment_ids(); 

     foreach($attachment_ids as $attachment_id) 
      { 
       // Display the image URL 
       echo $Original_image_url = wp_get_attachment_url($attachment_id); 

       // Display Image instead of URL 
       echo wp_get_attachment_image($attachment_id, 'full'); 

      } 
    ?> 

単一の商品ページに画像を表示している場合。その後

<?php 
    global $product; 

    $attachment_ids = $product->get_gallery_attachment_ids(); 

    foreach($attachment_ids as $attachment_id) 
     { 
      // Display the image URL 
      echo $Original_image_url = wp_get_attachment_url($attachment_id); 

      // Display Image instead of URL 
      echo wp_get_attachment_image($attachment_id, 'full'); 

     } 
?> 
関連する問題