我正在使用它在我的 WordPress 网站中显示横幅图像:
<img src="../../wp-content/uploads/<?php echo get_post_meta($post->ID, 'image-banner', true); ?>" alt="<?php the_title(); ?> banner" />
但是,会有一些页面没有横幅图像。
如何在显示img
标签之前重新检查图像(或“图像横幅”字段)是否存在?
提前致谢!
我正在使用它在我的 WordPress 网站中显示横幅图像:
<img src="../../wp-content/uploads/<?php echo get_post_meta($post->ID, 'image-banner', true); ?>" alt="<?php the_title(); ?> banner" />
但是,会有一些页面没有横幅图像。
如何在显示img
标签之前重新检查图像(或“图像横幅”字段)是否存在?
提前致谢!