• 20-09-2017, 12:30:33
    #1
    Merhaba,

    Sitemde mobil için farklı bir resim dizilişi kullanıyorum. Ekteki resimleri otomatik olarak alt alta diziyor bu kod. Kodlar ise şöyle:

    <?php
     $attachment_ids = $product->get_gallery_attachment_ids();
    
    foreach( $attachment_ids as $attachment_id ) 
    {
    
      //echo Image instead of URL
      echo wp_get_attachment_image($attachment_id, 'full');
    
    }
    ?>
    İlk resmi gösterip, diğer resimleri görmek için tıklayın şeklinde birşey yapmak istiyorum.

    Teşekkürler.
  • 20-09-2017, 12:35:08
    #2
    Üyeliği durduruldu
    <?php $i=1;
     $attachment_ids = $product->get_gallery_attachment_ids();
     
    foreach( $attachment_ids as $attachment_id )
    {
     
      //echo Image instead of URL
     if($i==1) {
     echo wp_get_attachment_image($attachment_id, 'full');
    }
     
    $i++; }
    ?>
    bu şekilde çözebilirsin hocam
  • 20-09-2017, 12:54:47
    #3
    starwarez adlı üyeden alıntı: mesajı görüntüle
    <?php $i=1;
     $attachment_ids = $product->get_gallery_attachment_ids();
     
    foreach( $attachment_ids as $attachment_id )
    {
     
      //echo Image instead of URL
     if($i==1) {
     echo wp_get_attachment_image($attachment_id, 'full');
    }
     
    $i++; }
    ?>
    bu şekilde çözebilirsin hocam
    Hocam çalışmadı bu şekilde. Hiçbir resimi göstermiyor.
  • 21-09-2017, 10:09:33
    #4
    Yardımcı olabilecek var mı?