如何在前端显示特色图标?

How can I display the featured icon on frontend?

您好,我应用了找到的代码

但我不知道如何在前端调用此图像。

到目前为止我试过这个:

$args = array('post_type' => 'katastima');
$the_query = new WP_Query($args);

while ( $the_query->have_posts() ) : $the_query->next_post();
$id= $the_query->post->ID;
$location = get_post_meta($id, 'listingimagediv', true);
echo $location;
endwhile;

但我想这不是从自定义元数据框中获取图像 link 的正确方法。 有什么建议吗?

提前致谢。

您从 get_post_meta 获得带照片的身份证件 所以下一步就是获取图片的url,see here

$size = 'full';
$icon = null;
$attr = array( "class" => "img-responsive" );
echo wp_get_attachment_image( $location, $size, $icon, $attr );