网站搜索结果未显示图片

时间:2018-08-02 作者:Dale

这里有人知道为什么我的搜索结果没有显示图像吗?这是我的代码: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);
}

结束

相关推荐

Multiple Meta key in search

我有一个wordpress插件,可以从数据库中搜索学生的结果。如果我输入卷号,它将显示结果。现在,我想修改这个,就像我输入学生的手机号码一样,它也应该显示结果。代码如下 enter // ResultPress search function function result_press_search() { if ( ! isset( $_POST[\'search\'] ) ) exit; query_posts(