我已经使用 wordpress 实现了我的博客,并且在我的帖子中,我直接发布了图像,但是如果我想显示它们,它们不会检索。
我已经使用the_content()
了,然后它在该帖子中显示带有剩余内容的图像,有人可以建议我如何检索这些图像..??提前谢谢
我已经使用 wordpress 实现了我的博客,并且在我的帖子中,我直接发布了图像,但是如果我想显示它们,它们不会检索。
我已经使用the_content()
了,然后它在该帖子中显示带有剩余内容的图像,有人可以建议我如何检索这些图像..??提前谢谢
您正在内容区域中插入图像,因此显然它将作为内容出现在前端。您需要使用顶部的选项将图像设置为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" />
}