【发布时间】:2016-02-01 05:09:35
【问题描述】:
所以我试图将图像调用到我的主页(主页)。该图像存在于帖子中,并被设置为该帖子的特色图像。所以我得到了帖子 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;
?>
它只是输出数组。谢谢你的帮助。
【问题讨论】: