在每个自定义帖子下面,我有两张图片和一个标题以及其他帖子的摘录要读,但图片没有加载。如果我查看代码,就会发现image变量为空。
<?php
foreach( $recent_posts as $recent_post ) {
setup_postdata( $recent_post );
$image_id = get_post_thumbnail_id( $recent_post->ID );
$image_url = \'\';
if( $image_id > 0 ) {
$image_url = wp_get_attachment_url( $image_id, \'medium\' );
}
?>
如果
$image_url
是否为空?