所以我试图将图像调到我的主页面(主页)。此图片位于帖子上,并且在该帖子上设置为特色图片。所以我得到了帖子ID,我能够在首页上显示标题和内容。但特色图片不会显示网址。
所以这是我头版的代码:
onBindViewHolder()
它只输出数组。谢谢你的帮助。
答案 0 :(得分:2)
以下是您的问题的解决方案。
$post_thumbnail_id = get_post_thumbnail_id($post_id);
$thumb_images = wp_get_attachment_url($post_thumbnail_id);
echo $thumb_images;
//Here you will get url of featured image.
答案 1 :(得分:0)
以下代码可以帮助您解决问题。
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post_id ), 'single-post-thumbnail' ); // get array of featured image
echo $image[0]; //get url of featured image of post