画像ブログのデザインに取り組んでいますが、いくつかの問題が発生しています。ライトボックスのメディア アイテムの「キャプション」領域を取得できましたが、「代替」領域または「説明」領域を取得できません。何か案は?
<?php if($attachment->post_excerpt): ?>alt="<?php echo $attachment->post_excerpt; ?>"<?php endif; ?>
(これは、メディア アイテムのキャプション エリアから取得するために使用するものです)
<?php $image = wp_get_attachment_image_src($attachment->ID, 'full'); ?>
<li><a href="<?php echo $image[0]; ?>" rel="prettyPhoto[gallery]" class="hover-gradient" title="untitled"><p style="display:none;"><?php if($attachment->post_excerpt): ?><?php echo $attachment->post_excerpt; ?><?php endif; ?></p><img src="<?php echo $thumbnail[0]; ?>" alt="gallery-blog" /></a></li>
<?php endforeach; endif; ?>
(これはホームページのサムの拡張コードです)
私は基本的に alt="gallery-blog" エリアを置き換えるものを探しているので、メディアページからメディアアイテムの代替テキストが表示されます