我以前在其他帖子中上传过图像,现在我想在我的照片库中显示它。我使用的是同位素布局,所以我没有使用WordPress的原生图库。它工作得很好,但是我不能显示没有直接上传到该帖子的图像。例如,我之前上传的图像。如果我将一个新的上传到当前的帖子,那么就会显示出来。
这是我的代码:
// DISPLAY ALL IMAGES FROM A PARENT GALLERY
$attachments = get_children(array(\'post_parent\' => $post->ID,
\'post_status\' => \'inherit\',
\'post_type\' => \'attachment\',
\'post_mime_type\' => \'image\',
\'order\' => \'ASC\',
\'orderby\' => \'menu_order ID\'));
foreach($attachments as $att_id => $attachment) {
那么,如何在我的图库中显示这些过去的图像呢?