如何从WordPress帖子中检索一定数量的图片? 时间:2017-02-28 作者:Constantin Bechetaru 我只需要检索wordpress帖子的前5张图片,但我不知道怎么做。我需要在一个自定义博客上使用它,以便在我的主页上使用。有什么建议吗?谢谢 1 个回复 SO网友:Samyer 您必须获取帖子的附件:$attachments = get_posts( array( \'post_type\' => \'attachment\', \'posts_per_page\' => 5, \'post_parent\' => $post_id, ) ); 文章导航