我的 WordPress 博客包含以下片段:
<?php
$images = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full');
if (count($images) > 0) { ?>
<div class="image-holder">
<a href="<?php the_permalink(); ?>"><img src="<?php bloginfo('template_directory') ?>/javascript/timthumb.php?src=<?php echo $images[0]; ?>&h=320&w=630&zc=1" alt="<?php the_title();?>" /></a>
</div>
<?php }
?>
这会在实际内容的顶部显示标题图像(特色图像)并使用 timthumbb 调整其大小。这里一切都很好,但是如果没有定义的特色图像,它会显示损坏的 img src。有没有办法编辑它以便仅在实际存在的情况下显示图像?