我已经使用wordpress实现了我的博客,在我的帖子中,我直接发布图片,但如果我想显示它们,他们就不会检索。
我已经使用了the_content()
然后它显示了该帖子中剩余内容的图片,任何人都可以建议我如何检索这些图像.. ?? Thanx提前
答案 0 :(得分:1)
您正在内容区域中插入图片,因此很明显它会在前端显示为内容。
您需要将图片设置为Featured image
,或使用Add media
顶部的text 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" />
}