I have downloaded a wordpress theme called livepuse, and unfortunately the alt tags are not showing on portfolio pages for my images. The website is as follows: http://vitul3ddesigns.com/project/listed-buildings/
the code snippet from the theme is as follows:
<div class="thumbs">
<?php
foreach ($images as $att) {
// get image's source based on size, can be 'thumbnail', 'medium', 'large', 'full' or registed post thumbnails sizes
$src = wp_get_attachment_image_src($att, 'full');
$src = $src[0];?>
<a href="">
<img src="
<?php if($rscript == 'TimThumb'){ ?>
<?php bloginfo('template_directory');?>/scripts/timthumb.php?src=<?php echo $src; ?>&w=70&h=40&a=t&q=95&zc=1
<?php } elseif($rscript == 'PHP Thumb'){ ?>
<?php bloginfo('template_directory');?>/phpThumb/phpThumb.php?src=<?php echo $src; ?>&w=70&h=40&q=95&zc=1
<?php } elseif($rscript == 'Disable Resize Script'){ ?>
<?php echo $attachment[0];?>
<?php } else{?>
<?php bloginfo('template_directory');?>/scripts/timthumb.php?src=<?php echo $src; ?>&w=70&h=40&a=t&q=95&zc=1
<?php }?>
" alt=""/>
</a>
<?php
}
?>
</div>
Thanks for your help in advance...
