我想得到一张嵌入后的图片,但我在互联网上看到的唯一方法是
$attachments = get_posts(array(
\'post_parent\' => get_the_ID(),
\'post_type\' => \'attachment\',
\'posts_per_page\' => $n,
\'post_mime_type\' => \'image\'
));
$attachments = get_children(array(
\'post_parent\' => get_the_ID(),
\'post_type\' => \'attachment\',
\'posts_per_page\' => $n,
\'post_mime_type\' => \'image\'
));
$attachments = get_attached_media(\'image\', get_the_ID());
但这只提供附加的图像我希望所有图像都在一篇文章中,即使它们没有附加到该文章中
\'post_parent\' => get_the_ID()
我认为这是wordpress附加图像的方式,听起来像是一对多的关系一个图像只能附加到一个帖子上
有什么想法吗?提前感谢