WordPress:如果图像存在,则显示它
我使用它在我的 WordPress 网站中显示横幅图像:
<img src="../../wp-content/uploads/<?php echo get_post_meta($post->ID, 'image-banner', true); ?>" alt="<?php the_title(); ?> banner" />
但是,有些页面没有横幅图像。
在显示 img
标记之前,如何重新检查图像(或“image-banner”字段)是否存在?
提前致谢!
I'm using this to display a banner image in my WordPress site:
<img src="../../wp-content/uploads/<?php echo get_post_meta($post->ID, 'image-banner', true); ?>" alt="<?php the_title(); ?> banner" />
However, there will be some pages with no banner image.
How can I rework this check if the image (or 'image-banner' field) exists before displaying the img
tag?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为最好使用一个变量来存储 img url,这样你就可以检查它是否为空..像这样:
I think it's better you use a variable to store img url, so you could just check if it is empty.. Like this: