0

我已经使用 wordpress 实现了我的博客,并且在我的帖子中,我直接发布了图像,但是如果我想显示它们,它们不会检索。

我已经使用the_content()了,然后它在该帖子中显示带有剩余内容的图像,有人可以建议我如何检索这些图像..??提前谢谢

4

1 回答 1

1

您正在内容区域中插入图像,因此显然它将作为内容出现在前端。您需要使用顶部的选项将图像设置为Featured image或添加它们。Add mediatext editor

image从精选图片中检索:(单张图片)

wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full')

image从添加媒体中检索:(多个图像)

$img_small = get_children('order=ASC&orderby=menu_order&post_type=attachment&post_parent=' . $post->ID);

foreach ($img_small as $imagesmall) {
 $attachmentID = $imagesmall->ID;
 $attachmentURL = wp_get_attachment_url($attachmentID);
<img src="<?php bloginfo('template_url'); ?>/phpThumb/phpThumb.php?src=<?php echo $attachmentURL; ?>&w=365&h=280&iar=1">alt="Image" />
}
于 2013-06-24T06:00:00.283 回答