我想为我的帖子的图像指定-如果是数字x,则输出这个,否则如果是数字y,则输出这个,等等。我正在尝试对该帖子的第1、4、9个图像进行特定处理。下面的代码是我用来简单输出我的所有图片的代码。有什么想法吗?
<?php $images = get_post_meta($post->ID, \'rw_postpage_images\'); ?>
<?php foreach ($images as $att) {
$src = wp_get_attachment_image_src($att, \'full\');
$src = $src[0];
$image_path = thumbGen($src,80,80,"crop=1&halign=center&valign=center&return=1");
?>
<div class="post_item">
<div class="small">
<img src="<?php echo $image_path; ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" width="80" height="80"/>
</div>
</div>
<?php } ?>