2016-03-26 9 views
-3

このサイズを呼び出す必要があります... add_image_size( 'sami_post_standard'、760,400、true);メタボックス内 .............................................. ................ ................................. .............................メタボックスのカスタムイメージサイズを取得する方法

このメタボックスコード

/** 
    * Post Type Gallery 
    */ 

    $meta_boxes['metabox-post-gallery'] = array(
     'id'   => 'metabox-post-gallery', 
     'title'  => __('Gallery Settings', 'sami'), 
     'pages'  => array('post',), 
     'context' => 'normal', 
     'priority' => 'high', 
     'show_names' => true, 
     'fields'  => array(
      array(
       'name'   => __('Slider Images', 'sami'), 
       'desc'   => __('Upload Your Gallery Slider images.', 'sami'), 
       'id'   => $prefix . 'gallery_slider', 
       'type'   => 'file_list', 
       'preview_size' => array(100, 100), 
      ), 
     ), 
    ); 
///////////////////////// 
in single.php file call 
///////////////////////// 
$gallery_slider = get_post_meta($post->ID, 'sami_gallery_slider', true); 

      <div class="slider_post"> 
       <div class="post_silder"> 
        <ul id="post-slid-post"> 
         <?php 
          foreach ($gallery_slider as $gallery_slider) { 
           echo "<li>"; 
           echo '<div class="item"><img src="'. esc_url($gallery_slider) .'" alt="'. esc_attr(get_the_title()) .'"></div>'; 
           echo "</li>"; 
          } 
         ?> 
        </ul> 
       </div> 
      </div> 
+1

です。現在書かれているとおり、あなたが求めていることを正確に伝えるのは難しいです。この質問を明らかにするには、[How to Ask](http://stackoverflow.com/help/how-to-ask)ページを参照してください。 –

答えて

0

これはあなたの特定の問題を明確にしたり、必要な正確に何を強調表示するために、追加の詳細情報を追加してくださいソリューション

<?php 
     if ($gallery_sliders) { 
      foreach ($gallery_sliders as $attachment_id => $img_full_url) { 
      echo "<li>"; 
      echo '<div class="item">'. $full = wp_get_attachment_link($attachment_id, 'ashmawi_post_standard'); echo esc_url($full[0]) .'</div>'; 
      echo "</li>"; 
      } 
     } 
    ?> 
関連する問題