0

添付ファイルの URL ではなく、添付ファイルの実際の画像を表示したい。私はこのコードを使用していますが、URLを表示しています:

 <?php
 $argsThumb = array(
     'order'       => 'ASC',
     'post_type'   => 'attachment',
     'post_parent' => $post->ID,
     'post_status' => null
 );
 $attachments = get_posts($argsThumb);
 if ($attachments) {
     foreach ($attachments as $attachment) {
         apply_filters('the_title', $attachment->post_title);
         echo wp_get_attachment_url($attachment->ID, false, false); 
     }
 }
 ?> 
4

1 に答える 1

0

おそらく、次のことを試してください。

 <?php
 $argsThumb = array(
     'order'       => 'ASC',
     'post_type'   => 'attachment',
     'post_parent' => $post->ID,
     'post_status' => null
 );
 $attachments = get_posts($argsThumb);
 if ($attachments) {
     foreach ($attachments as $attachment) {
         apply_filters('the_title', $attachment->post_title);
         echo "<img src='" . wp_get_attachment_url($attachment->ID, false, false) . "' />"; 
     }
 }
 ?> 
于 2013-05-17T08:30:56.290 に答える