这里有人知道为什么我的搜索结果没有显示图像吗?这是我的代码:https://pastebin.com/sgCTnDcd
网站搜索结果未显示图片
1 个回复
SO网友:nmr
看这里:
if($row->type==\'post\'){
$result = wp_get_attachment_image_src ($attachment_id, \'medium\');
$url_img = $result[\'url\'];
$permalink = get_permalink($row->id);
}
您正在使用attachment_id
变量,但您尚未在任何地方启动它。if($row->type==\'post\'){
$attachment_id = get_post_thumbnail_id($row->id);
$result = wp_get_attachment_image_src ($attachment_id, \'medium\');
$url_img = $result[\'url\'];
$permalink = get_permalink($row->id);
}
结束