如何为这些图片添加ALT标记?我需要添加
$alt = get_post_meta(get_post_thumbnail_id($post->ID), '_wp_attachment_image_alt', true);
到数组,然后在显示图像时添加<?php echo $alt; ?>
?
<?php /* 2 IMAGES DIVIDER */ ?>
<?php if($divider_type == 'images'): ?>
<section class='divider content gallery'>
<?php
$images = array();
foreach($section['images'] as $image_id => $image_url)
{
$image = wp_get_attachment_image_src($image_id, '900w');
$image_details = get_post($image_id);
$images[] = array('img_url'=>$image[0],'caption'=>$image_details->post_excerpt);
}
?>
<div class='gallery-half'>
<figure>
<img src='<?php echo $images[0]['img_url']; ?>'>
<?php if($images[0]['caption'] != ''): ?>
<figcaption><?php echo $images[0]['caption']; ?></figcaption>
<?php endif; ?>
</figure>
</div><!--
--><div class='gallery-half'>
<img src='<?php echo $images[1]['img_url']; ?>'>
</div>
</section>
<?php endif; ?>
提前谢谢。
答案 0 :(得分:0)
为什么不使用wp_get_attachment_image()
?这会为你处理alt标签。
<?php /* 2 IMAGES DIVIDER */ ?>
<?php if ( $divider_type == 'images' ) : ?>
<section class='divider content gallery'>
<?php
$images = array();
foreach ( $section['images'] as $image_id => $image_url ) : ?>
<?php $image_details = get_post( $image_id ); ?>
<div class='gallery-half'>
<figure>
<?php echo wp_get_attachment_image( $image_id, '900w' ); ?>
<?php if ( $image_details->post_excerpt ) : ?>
<figcaption><?php echo $image_details->post_excerpt; ?></figcaption>
<?php endif; ?>
</figure>
</div>
<?php endif; ?>
</section>
<?php endif; ?>
我稍微修改了代码段以便循环显示$ section [&#39; images&#39;]中的所有图片,然后输出.gallery-half
div中的数字元素和标题(如果有)之一。
答案 1 :(得分:0)
您也可以使用wp_get_attachment_image,这会获得带有img
属性的alt
html标记。但是,你是对的,如果你想自己获得价值,你必须使用get_post_meta
。实际上wp_get_attachment_image
函数也可以访问该数据。
$default_attr = array(
'src' => $src,
'class' => "attachment-$size_class size-$size_class",
'alt' => trim(strip_tags( get_post_meta($attachment_id, '_wp_attachment_image_alt', true) )), // Use Alt field first
);