我正在使用Wordpres Bootstrap,默认情况下不会显示来自图库的图像(wp的默认媒体库)。我只是想显示一个库中的图像作为默认的WordPress。我正在尝试一个有效的脚本,但它显示了在媒体库中上传的所有图像,而不是唯一附加到单个页面的图像。我从3天开始疯狂,没有找到解决方案! :(
<ul>
<?php $images = get_children('post_type=attachment&post_mime_type=image&post_parent=' . $post->ID . ' &orderby=menu_order&order=ASC');
foreach( $images as $img_id => $img_r ) :
$thumb = wp_get_attachment_image_src( $img_id, 'thumbnail', true );
$full = wp_get_attachment_image_src( $img_id, 'full', true ); ?>
<li>
<a href="<?php echo $full[0] ?>">
<img src="<?php echo $thumb[0] ?>" alt="<?php echo get_the_title( $img_id ) ?>" title="<?php echo get_the_title( $img_id ) ?>">
</a>
</li>
<?php endforeach; ?>
</ul>