在我看来,Wordpress 画廊有一种奇怪的工作方式。我解释:
Wordpress 图库仅在帖子中显示当前帖子中已上传的图像。如果您在图库中添加已经在媒体库中的图像,它将不会显示!
创建图库后,如果我从图库中删除图像,无论如何都会显示
画廊显示附加到帖子的所有图像(还包括缩略图和嵌入图像),尽管这些图像不包含在画廊中
我会把这一切都称为错误。
问题:是否可以在帖子中仅显示图库中包含的图像(上传的图像和已经在媒体库中的图像)?
注意:不使用简码[gallery exclude="..."]
也不直接从媒体库上传图片?
PS 要在帖子中显示画廊,我正在使用此脚本:
<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, 'thumb', 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>