我有一个主题,它使用TimThumb在图库页面上生成缩略图。问题是,主库页面上的每个图像都没有显示图像alt标记,请参见此处:
http://christinecraven.com/gallery/press
我试图通过在每个帖子/公文包项目中添加一个名为“alt\\u tag”的自定义字段,然后在类别中调用它来生成alt标记。我的主题中的php文件:
$alttag = get_post_meta($post->ID, \'alt_tag\', true);
<div class="imgHentry">
<?php the_post_thumbnail( \'thumbnail\' ); ?> alt="<?php echo get_post_meta($att, \'alt_tag\', true); ?>"
<div class="linkIcon" style="width:150px; height:150px;">
<a href="<?php the_permalink(); ?>" class="goto-icon" style="width:150px; height:150px;"></a>
</div>
</div><!-- .imgHentry -->
我在这个论坛上发现了一个类似的问题:
alt attributes not showing on pages但不幸的是,似乎无法拼凑出一个有效的解决方案!