从链接到post_id的帖子库中获取特定图像

时间:2012-02-12 作者:vitto

是否可以使用post_id?

我通常与get_the_post_thumbnail 但在这种情况下,我想从博文库中获取第二张图片,因此这张图片与博文的特色图片不同。

是否有一些教程可以获得它?

1 个回复
SO网友:mor7ifer

您可以通过以下方式获取与帖子关联的所有图像:

$args = array(
    \'post_type\'      => \'attachment\',
    \'post_mime_type\' => \'image\',
    \'post_parent\'    => $post_parent_id // you\'ll need to set this somewhere else
);
$images = get_children( $args )
要从该图像转到第二个图像,您只需指向$images[1], 但我不确定这是怎么回事,你可能需要把排序顺序弄乱一点。

结束

相关推荐

WP_QUERY$Gallerypage->提供未定义偏移量的_POST():0

当我这样做的时候$gallerypage = new WP_Query(array( \'post_type\' => \'post\', \'pagename\' => \'gallery\' )); $gallerypage->the_post(); 最后一行$gallerypage->the_post(); 给了我错误。为什么会这样?这似乎是正确的?Notice: Undefined offset: 0 in