如何显示媒体库中上传而不是由当前帖子上传的图像?

时间:2013-07-11 作者:mark lape

我以前在其他帖子中上传过图像,现在我想在我的照片库中显示它。我使用的是同位素布局,所以我没有使用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) {
那么,如何在我的图库中显示这些过去的图像呢?

1 个回复
SO网友:rfrq

正在更改\'post_parent\' => $post->ID\'post_parent\' => null 将获取所有图像。

结束

相关推荐

Image Gallery Numbers for 3.5

在以前安装的WordPress中,可以在attachment.php 使用下面最初提供的代码here. 然而,我发现这个代码不再有效,因为图像编号不准确。是否有新代码可用?<?php global $post; $ancestors = get_post_ancestors($post->ID); $photos = get_children(array( \'post_mime_type\' => \'image\', \'