我无法通过WordPress检索特色图片网址


I can't retrieve featured image url through wordpress

所以我正在尝试将图像调用到我的主页(主页)。此图像位于帖子中,并设置为该帖子的特色图像。所以我得到了帖子ID,我能够在首页上显示标题和内容。但精选图片不会显示网址。

所以这是我在首页上的代码:

<?php
$post_id = 53;
$queried_post = get_post($post_id);
$title = $queried_post->post_title; 
$image = wp_get_attachment_image_src(get_post_thumbnail_id($post_id));
echo $title;
echo $image;
echo $queried_post->post_content;
?>

它只是输出数组。谢谢你的帮助。

这是您问题的解决方案。

$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.

以下代码可以帮助您解决问题。

$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