我有以下代码。当后端只有一个图像时,第二个图像会显示一个小问号,而不是什么都没有。我正在寻找一种方法,首先检查图像是否存在,如果存在,请运行代码,如果不存在,请运行代码。
<?php $image = wp_get_attachment_image_src(get_field(\'post_image1\'), \'thumbnail\'); ?>
<img src="<?php echo $image[0]; ?>" alt="<?php get_the_title(get_field(\'post_image1\')) ?>" />
<?php $image = wp_get_attachment_image_src(get_field(\'post_image2\'), \'thumbnail\'); ?>
<img src="<?php echo $image[0]; ?>" alt="<?php get_the_title(get_field(\'post_image2\')) ?>" />